@charset "UTF-8";
/* ============================================================
   わたしたちの くに / OUR COUNTRY  — Exhibition LP
   PC 1440px / SP 390px
   mobile: <= 767px / tablet: 768-959px / desktop: >= 960px
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* hidden 属性を確実に効かせる（.cform 等の display 指定に負けないように） */
[hidden] {
  display: none !important;
}

/* ---------- Tokens ---------- */
:root {
  /* 背景 */
  --c-dark: #1c1917;
  --c-dark-warm: #1c1a18;
  --c-hero-bg: #24201d;
  --c-light: #f0ede6;
  --c-light-2: #f7f5f0;

  /* 文字 */
  --c-cream: #f7f5f0;
  --c-cream-2: #f8f5ee;
  --c-cream-3: #ede9e0;
  --c-ink: #1c1917;
  --c-ink-2: #1a1917;
  --c-gold: #b8965a;
  --c-gold-2: #b8a97a;
  --c-mute: #6b6560;
  --c-mute-2: #8c8579;
  --c-mute-3: #c8c2b4;
  --c-mute-4: #c0beba;
  --c-mute-5: #c4bfb5;
  --c-label: #9a9590;
  --c-nav: #b0a99e;

  /* 罫線（デザインのヘアライン） */
  --c-hairline: #d4cfc5; /* about/materials/artists/visit の仕切り線 */
  --c-hairline-2: #9a9590; /* news セクションの上下境界線 */

  /* フォーム */
  --c-field-bd: #1c1917; /* デザインの入力欄 stroke */
  --c-required: #fa4848; /* 必須バッジ */
  --c-optional: #6a6a6a; /* 任意バッジ */
  --c-link: #2801c4;
  --c-error: #c0392b;

  --ff-serif: "Noto Serif JP", serif;
  --ff-en: "EB Garamond", "Noto Serif JP", serif;
  --ff-sans: "Noto Sans JP", sans-serif;

  --header-h: 64px;
  --content-max: 984px;
  --page-gutter: 20px;
  --gap: clamp(28px, 4.17vw, 60px);
}

@media (max-width: 767px) {
  :root {
    --header-h: 61px;
  }
  .inner {
    width: min(640px, calc(100% - (var(--page-gutter) * 2)));
  }
  .footer__inner {
    width: min(640px, 100%);
    margin-inline: auto;
  }
}

/* ============================================================
   背景画像（hero / concept / highlights / footer）
   セクション枠へcoverし、構図差はobject-positionで吸収する。
   ============================================================ */
picture.hero__bg,
picture.concept__bg,
picture.highlights__bg,
picture.footer__bg {
  overflow: hidden;
}
picture.hero__bg > img,
picture.concept__bg > img,
picture.highlights__bg > img,
picture.footer__bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
picture.hero__bg > img { object-position: center; }
picture.concept__bg > img { object-position: center; }
picture.highlights__bg > img { object-position: center top; }
picture.footer__bg > img { object-position: center 42%; }

/* ---------- Base ---------- */
body {
  font-family: var(--ff-serif);
  background: var(--c-dark);
  color: var(--c-cream);
  line-height: 1.75;
  font-feature-settings: "palt" 1;
  /* macOS のブラウザ既定はサブピクセルAAで、Figma（グレースケールAA）より
     一段太く見える。デザインと太さを揃えるためグレースケールAAに固定する。
     指摘（2026-07-27）「ABOUT見出しがデザインより太い」の対応。
     太さ自体は生SVGで font-weight 属性なし＝400、実装も400で既に一致している。 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip は hidden と違いスクロールコンテナを作らない。
     hidden だと body 自身がスクロール要素化し、position:fixed や
     スムーススクロールの挙動が壊れる。 */
  overflow-x: clip;
  padding-top: var(--header-h);
}
:lang(en) body,
.en body {
  font-family: var(--ff-en);
}

.wrap {
  margin-inline: auto;
}
.inner {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  padding-inline: 0;
}
.inner > *,
[class*="__grid"] > *,
.work__body > * {
  min-width: 0;
}
p,
h1,
h2,
h3,
dd {
  overflow-wrap: break-word;
}

/* 画面読み上げ専用 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   画像トリミング（crop）

   枠はaspect-ratioで比率を決め、画像はobject-fit/object-positionで追従させる。
   viewportごとの数百%拡大や負のleft/topに依存しない。
   ============================================================ */
.crop {
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
}
.crop > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

/* News: Instagram */
.crop--news1,
.crop--news2,
.crop--news3,
.crop--news4,
.crop--news5,
.crop--news6 {
  aspect-ratio: 1;
}
.crop--news1 > img,
.crop--news2 > img,
.crop--news3 > img,
.crop--news4 > img,
.crop--news5 > img,
.crop--news6 > img {
  right: auto;
  bottom: auto;
  max-width: none;
  object-fit: fill;
}
.crop--news1 > img {
  top: -33.065%;
  left: 0;
  width: 100%;
  height: 150%;
}
.crop--news2 > img {
  top: -20.968%;
  left: -47.581%;
  width: 195.161%;
  height: 129.839%;
}
.crop--news3 > img {
  top: -23.387%;
  left: -2.419%;
  width: 102.419%;
  height: 153.226%;
}
.crop--news4 > img {
  top: -16.935%;
  left: 0;
  width: 100%;
  height: 133.871%;
}
.crop--news5 > img {
  top: -1.613%;
  left: -12.097%;
  width: 191.129%;
  height: 103.226%;
}
.crop--news6 > img {
  top: -3.226%;
  left: -26.613%;
  width: 198.387%;
  height: 105.645%;
}

/* Concept / About / Highlights */
.crop--concept { aspect-ratio: 382 / 480; }
.crop--concept > img {
  top: -4.167%;
  right: auto;
  bottom: auto;
  left: -60.733%;
  width: auto;
  height: 120.833%;
  max-width: none;
  object-fit: fill;
}
.crop--about1,
.crop--about2,
.crop--about3 {
  aspect-ratio: 306 / 360;
}
.about__photo,
.about__photo > img {
  display: block;
  width: 100%;
  height: 100%;
}
.about__photo > img {
  object-fit: cover;
  object-position: center;
}
.crop--hl1,
.crop--hl2,
.crop--hl3 {
  aspect-ratio: 553 / 383;
}

/* Materials */
.crop--mat1,
.crop--mat2,
.crop--mat3,
.crop--mat4,
.crop--mat5,
.crop--mat6 {
  aspect-ratio: 306 / 260;
}

/* Artists */
.crop--ar1,
.crop--ar2,
.crop--ar3 {
  aspect-ratio: 301 / 400;
}
.artist__photo > picture,
.artist__photo > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.artist__photo > picture > img {
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Works */
.crop--wk1,
.crop--wk4 {
  aspect-ratio: 984 / 419;
}
.crop--wk2,
.crop--wk3 {
  aspect-ratio: 461 / 419;
}
.crop--wk1 > img { object-position: center 48%; }
.crop--wk4 > img { object-position: center 58%; }

/* Visit */
.crop--map { aspect-ratio: 546 / 320; }
.crop--venue { aspect-ratio: 546 / 220; }
.crop--map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.crop--venue > img { object-position: center; }

@media (max-width: 767px) {
  .crop--concept,
  .crop--hl1,
  .crop--hl2,
  .crop--hl3 {
    aspect-ratio: 350 / 256;
  }
  .crop--about1,
  .crop--about2,
  .crop--about3 {
    aspect-ratio: 350 / 191;
  }
  .crop--mat1,
  .crop--mat2,
  .crop--mat3,
  .crop--mat4,
  .crop--mat5,
  .crop--mat6,
  .crop--ar1,
  .crop--ar2,
  .crop--ar3 {
    aspect-ratio: 1;
  }
  .crop--wk1,
  .crop--wk4 {
    aspect-ratio: 350 / 213;
  }
  .crop--wk2,
  .crop--wk3,
  .crop--map {
    aspect-ratio: 350 / 256;
  }
  .crop--venue {
    aspect-ratio: 350 / 160;
  }
  .crop--concept > img {
    top: -23.438%;
    left: -35.429%;
    width: auto;
    height: 155.859%;
  }
}
/* セクション見出し（英字ラベル + 和文見出し） */
.sec-label {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 14px;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.sec-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3.6px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .sec-label {
    letter-spacing: 1.6px;
    line-height: 14px;
    margin-bottom: 40px;
  }
  .sec-title {
    font-size: 26px;
    letter-spacing: 2.4px;
    line-height: 39px;
  }
}

.break__pc-only,
.break__sp-only {
  display: none;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--c-dark);
  display: flex;
  align-items: center;
  padding-inline: clamp(20px, 4.44vw, 64px);
}
.header__logo {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 2px;
  color: var(--c-cream);
  white-space: nowrap;
  flex: none;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 40px);
}
/* 中間幅でナビ項目が折り返さないようにする */
.nav__link,
.nav__contact,
.lang__btn {
  white-space: nowrap;
}
.nav__link {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.8px;
  color: var(--c-nav);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--c-cream);
}
.nav__contact {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.8px;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: 4px 10px;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav__contact:hover {
  opacity: 0.8;
}

/* 言語切替 */
.lang {
  position: relative;
}
.lang__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--c-nav);
  transition: color 0.2s;
}
.lang__btn:hover {
  color: var(--c-cream);
}
.lang__btn img {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}
.lang__pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 196px;
  padding: 22px 0;
  background: var(--c-dark);
  border: 1px solid var(--c-nav);
  display: none;
}
.lang__pop[data-open="true"] {
  display: block;
}
.lang__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 14px;
  font-size: 16px;
  color: var(--c-cream);
}
.lang__head img {
  width: 16px;
  height: 16px;
}
.lang__item {
  display: block;
  padding: 9px 20px;
  font-size: 16px;
  color: var(--c-nav);
  transition:
    background 0.2s,
    color 0.2s;
}
.lang__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-cream);
}
.lang__item[aria-current="true"] {
  color: var(--c-cream);
}

/* ハンバーガー + MENU ラベル（SPのみ） */
.burger {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 0;
  margin-left: auto;
}
.burger__icon {
  position: relative;
  width: 24px;
  height: 16px;
  flex: none;
}
.burger__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-cream);
  transition:
    transform 0.3s,
    opacity 0.2s;
}
.burger__icon span:nth-child(1) {
  top: 0;
}
.burger__icon span:nth-child(2) {
  top: 50%;
}
.burger__icon span:nth-child(3) {
  bottom: 0;
}
.burger__label {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  color: var(--c-cream);
}

@media (max-width: 1180px) {
  .header {
    padding-inline: 20px;
  }
  .header__logo {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header {
    padding-inline: 24px;
  }
  .header__logo {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.44px;
  }
  .burger {
    gap: 6px;
    width: 64px;
  }
  .burger__icon {
    width: 16px;
    height: 13px;
  }
}

/* SP 全画面メニュー */
/* デザイン(SP_メニュー)は全項目が中央揃え（各テキストの中心が 195px = 390/2 で一致）。
   CLOSE は右上（y38 x322）。並び順は タイトル→OUR COUNTRY→ナビ5件→Language→お問い合わせ。
   ナビは 60px ピッチ。
   区切り線は生SVGに5本ある（y=239/299/359/419/479, x=20→370, stroke #B0A99E 0.5px）。
   ＝ナビ5項目それぞれの下に1本。Language行の下には無い。
   ※以前「線は無い」と書いていたのは dump_spec.py が <path> を出力しないための誤り。 */
.spmenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-dark);
  padding: 83px 20px 40px; /* 罫線基準で逆算（設計: 1本目 y=239） */
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-y: auto;
}
.spmenu[data-open="true"] {
  display: flex;
}
.spmenu__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--c-cream);
  line-height: 1;
}
.spmenu__sub {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--c-gold);
  margin-top: 15px;
  line-height: 1;
}
/* 罫線を項目幅いっぱい(350px)に引くため stretch + width:100% にする */
.spmenu__list {
  margin-top: 37px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.spmenu__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--c-nav);
  line-height: 1;
  padding: 23px 0; /* 上下23+行14 = 60px ピッチ */
}
/* 罫線。border-bottom だと項目の高さが1px増えて60pxピッチが崩れるため、
   レイアウトに影響しない ::after で引く。デザイン: stroke #B0A99E / 0.5px */
.spmenu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.5px;
  background: var(--c-nav);
}
.spmenu__lang {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spmenu__langhead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--c-nav);
  margin: 0;
}
.spmenu__langhead img {
  width: 16px;
  height: 16px;
}
/* デザインには言語リストが無く「Language」のみだが、SPで言語切替できないと
   機能的に困るため、リンク2件を小さく中央に添える（意図的な差分） */
.spmenu__langlist {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.spmenu__langlist a {
  font-size: 13px;
  color: var(--c-nav);
}
.spmenu__langlist a[aria-current="true"] {
  color: var(--c-cream);
}
.spmenu__contact {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  max-width: 100%;
  height: 64px;
  font-size: 16px;
  color: var(--c-ink);
  background: var(--c-light);
  border-radius: 0; /* デザインの rect に rx が無い＝角丸なし */
}
.spmenu__close {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--c-cream);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: clamp(620px, 52.71vw, 759px);
  background: var(--c-hero-bg);
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 119px 20px 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  position: relative;
  left: 9px;
  font-size: 12px;
  margin-top: 65px;
  letter-spacing: 2.8px;
  color: var(--c-gold);
  line-height: 15px;
}
.hero__title {
  position: relative;
  left: -5px;
  margin-top: 16px;
  line-height: 80px;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 4.9px;
  color: var(--c-cream);
  text-shadow: 7px 7px 9px rgba(0, 0, 0, 0.48);
}
.hero__en {
  position: relative;
  left: 9px;
  margin-top: 32px;
  line-height: 1;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 7.3px;
  color: var(--c-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.hero__date {
  position: relative;
  left: 9px;
  margin-top: 118px;
  height: 28px;
  line-height: 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4.4px;
  font-weight: 500;
  color: #fff;
}
.hero__date .y {
  font-size: 16px;
  letter-spacing: 1px;
}
.hero__date .d {
  font-size: 32px;
  letter-spacing: 1px;
}
.hero__date .w {
  font-size: 16px;
  letter-spacing: 2px;
}
.hero__date .sep {
  font-size: 16px;
  letter-spacing: 1px;
}
.hero__hours {
  position: relative;
  left: 9px;
  margin-top: 16px;
  line-height: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--c-cream);
}
.hero__venue {
  position: relative;
  left: 9px;
  margin-top: 24px;
  line-height: 20px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}
.hero__scroll {
  position: absolute;
  left: calc(50% + 9px);
  bottom: -16px;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 10px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 1.75px;
  color: var(--c-cream);
  /* display: none; */
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 2px auto 0;
  background: var(--c-cream);
  opacity: 0.5;
}
.hero__decor {
  position: absolute;
  z-index: 1;
  top: 144px;
  right: max(20px, calc((100vw - 1112px) / 2));
  width: 75px;
  height: 497px;
  overflow: hidden;
  opacity: 0.7;
  pointer-events: none;
}
.hero__decor > img {
  position: absolute;
  top: -3.81%;
  left: -152.9%;
  width: 378.32%;
  height: 109.62%;
  max-width: none;
}
picture.hero__bg > img {
  opacity: 1;
}
@media (max-width: 767px) {
  .hero {
    height: clamp(560px, 163.59vw, 638px);
  }
  .hero::after {
    background: transparent;
  }
  .hero__body {
    top: 61px;
    padding: 19px 14px clamp(113px, 36.15vw, 141px);
  }
  picture.hero__bg > img {
    width: 145.67%;
    height: 134.68%;
    max-width: none;
    left: -20.78%;
    right: auto;
    top: -34.68%;
    bottom: auto;
    transform: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
  }
  .hero__label {
    left: 0;
    font-size: 10px;
    margin-top: 5px;
    line-height: 15px;
    letter-spacing: 1.9px;
  }
  .hero__title {
    left: 0;
    font-size: clamp(30px, 9.74vw, 38px);
    letter-spacing: clamp(1.5px, 0.82vw, 3.2px);
    margin-top: 12px;
    line-height: 38px;
    white-space: nowrap;
    text-shadow: 4px 5px 4px rgba(0, 0, 0, 0.45);
  }
  .hero__en {
    left: 0;
    margin-top: 23px;
    font-size: 16px;
    letter-spacing: 4.5px;
    text-shadow: none;
  }
  .hero__date {
    left: 0;
    margin-top: auto;
    line-height: 28px;
    gap: 4.65px;
    white-space: nowrap;
  }
  .hero__date .d {
    font-size: 26px;
  }
  .hero__date .y,
  .hero__date .w,
  .hero__date .sep {
    font-size: 14px;
  }
  .hero__hours {
    left: 0;
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 28px;
  }
  /* SPデザインでは会場名・SCROLL に不透明度が掛かっている */
  .hero__venue {
    left: 0;
    margin-top: 8px;
    font-size: 16px;
    line-height: 28px;
    opacity: 0.8;
    overflow-wrap: anywhere;
  }
  .hero__scroll {
    left: 50%;
    bottom: 12px;
    font-size: 8px;
    line-height: 8px;
    opacity: 0.5;
  }
  .hero__scroll::after {
    height: 20px;
    margin-top: 8px;
  }
  .hero__decor {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .hero__decor {
    display: none;
  }
}

/* ============================================================
   News
   ============================================================ */
/* newsは上下に全幅のヘアラインで囲まれる（デザイン、16px内側） */
.news {
  position: relative;
  background: var(--c-dark);
  padding: 100px 0 100px;
}
.news .sec-label {
  line-height: 28px;
  margin-bottom: 40px;
}
.news::before,
.news::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-hairline-2);
  opacity: 0.5;
}
.news::before {
  top: 16px;
}
.news::after {
  bottom: 17px;
}
/* 指摘（Figma 2026-07-27）:「間の余白を開けて欲しい」は縦ではなく“横”。
   生SVGの区切り線が x=228→636（幅408px）、右のInstagram列が x=830→1213（幅383px）
   ＝ 列間は194px。コンテンツ幅985pxに対し 41.4% : 19.7% : 38.9%。
   旧実装は 1.419fr : 1fr / gap 53px で、左列が広すぎ列間が狭すぎた。
   列間は%指定にして、どの画面幅でもデザインの比率を保つ。 */
.news__grid {
  display: grid;
  column-gap: 19.7%;
  grid-template-columns: minmax(0, 408fr) minmax(0, 383fr);
}
.news__list {
  display: flex;
  flex-direction: column;
}
/* 指摘（Figma 2026-07-27）:「間の余白を開けて欲しい」。px指定が無かったため
   26px→40px（他セクションの余白と揃う値）で暫定対応。指定が来たら差し替える。 */
.news__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 9px;
  padding: 31px 0 0;
  border-bottom: 1px solid #d8d4cc;
}
.news__item:first-child {
  padding-top: 0;
  padding-bottom: 36px;
}
/* デザインの区切り線は「項目の間」に1本だけ（生SVGのH-lineは y=1079 の x=228→636 のみ）。
   最終項目の下には無いので消す。指摘外だがデザインとの差異のため合わせた。 */
.news__item:last-child {
  border-bottom: 0;
}
.news__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news__date {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: var(--c-cream);
}
.news__tag {
  display: grid;
  place-items: center;
  width: 58px;
  height: 20px;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  color: var(--c-cream);
  border: 1px solid var(--c-cream);
  padding: 0;
}
.news__text {
  align-self: start;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  color: var(--c-cream);
}
.news__ig-lead {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--c-cream);
  line-height: 36px;
}
.news__ig-grid {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.news__ig-link {
  margin-top: 7px;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.44px;
  color: var(--c-cream);
  line-height: 36px;
  transition: opacity 0.2s;
}
.news__ig-link:hover {
  opacity: 0.7;
}
.news__ig-icon {
  display: block;
  flex: none;
  width: 14px;
  height: 14px;
}
.news__ig-icon > img {
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .news__grid {
    grid-template-columns: 408px 382px;
    column-gap: 194px;
  }
}
@media (max-width: 767px) {
  /* デザイン: NEWS一覧 → (73px) → ig-lead → (34px) → 画像2列 → (38px) → @… → (64px) → 次 */
  .news {
    padding: 60px 0;
  }
  .news::before {
    top: 8px;
  }
  .news::after {
    bottom: 7px;
  }
  .news .sec-label {
    line-height: 14px;
    margin-bottom: 40px;
  }
  .news__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .news__item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0;
    padding: 28px 0 0;
  }
  .news__item:first-child {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .news__meta {
    gap: 8px;
  }
  .news__date {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1px;
  }
  .news__tag {
    width: 40px;
    height: 19px;
    font-size: 10px;
    font-weight: 400;
    line-height: 13.5px;
    letter-spacing: normal;
  }
  .news__text {
    width: auto;
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .news__item:first-child .news__text {
    width: min(249px, 100%);
  }
  /* SPデザインの画像間は20px（PCの5pxとは別値）。指摘外だがデザインとの差異のため合わせた */
  .news__ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-inline: 4px;
  }
  /* 指摘（Figma 2026-07-27）: 画像→@アカウント名の余白を24pxに */
  .news__ig-link {
    margin-top: 24px;
    gap: 16px;
    height: 18px;
  }
  .news__ig-lead,
  .news__ig-link {
    font-size: 14px;
  }
  .news__ig-lead,
  .news__ig-link {
    line-height: 16px;
  }
  .news__ig-icon {
    width: 18px;
    height: 18px;
  }
}

/* ============================================================
   Concept
   ============================================================ */
.concept {
  position: relative;
  background: var(--c-dark);
  overflow: hidden;
}
.concept__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
picture.concept__bg > img {
  inset: auto;
  top: -27.51%;
  left: -22.29%;
  width: 122.29%;
  height: auto;
  max-width: none;
  object-fit: fill;
}
.concept__inner {
  position: relative;
  z-index: 1;
  /* min-height: 680px; */
  padding-top: 100px;
  padding-bottom: 100px;
  /* padding-block: 0; */
  display: grid;
  gap: var(--gap);
  align-items: start;
  grid-template-columns: minmax(0, 1.419fr) minmax(0, 1fr);
}
.concept__inner > div:first-child {
  padding-top: 55px;
}
.concept .sec-label {
  line-height: 15px;
}
.concept__lead {
  width: 522px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 36px;
  color: var(--c-cream-2);
  margin-top: 40px;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.62);
}
/* 指摘（Figma 2026-07-27）: 上の余白は64px、縦線は #D4CFC5（= --c-hairline） */
.concept__sub {
  margin-top: 72px;
  padding-left: 31px;
  border-left: 1px solid var(--c-hairline);
}
.concept__sub h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--c-cream);
  line-height: 22px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.concept__sub p {
  width: 412px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 28px;
  color: var(--c-mute-3);
}
@media (max-width: 767px) {
  /* デザインSPの並び順は CONCEPT → リード → 写真 → 書×テキスタイル小見出し。
     テキスト側の div を display:contents で解体し、order で写真を割り込ませる。 */
  .concept__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 0;
  }
  .concept__inner > div:first-child {
    display: contents;
  }
  .concept .sec-label {
    line-height: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .concept__lead {
    order: 1;
    width: auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
    margin-top: 20px;
  }
  .concept__fig {
    order: 2;
    margin-top: 32px;
  }
  .concept__sub {
    order: 3;
    margin-top: 24px;
    padding-left: 23px;
  }
  .concept__sub h3 {
    font-size: 16px;
    letter-spacing: 5px;
    line-height: 16px;
  }
  .concept__sub p {
    width: auto;
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    /* letter-spacing: 1px; */
  }
  .concept__lead .break__sp-only {
    display: block;
  }
  picture.concept__bg > img {
    top: -72.3%;
    left: -57.5%;
    width: 229.84%;
    height: auto;
  }
}

/* ============================================================
   About（展示について）
   ============================================================ */
.about {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 100px 0;
}
.about .sec-title {
  color: var(--c-ink);
}
.about__lead {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
  color: var(--c-mute);
}
.about__grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.3vw, 33px);
}
/* 画像と見出しの間のヘアライン仕切り（デザインに存在） */
.about__fig {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-hairline);
}
/* 1pxのヘアラインを含め、Figma上の見出し開始位置まで32pxを確保する。 */
.about__name {
  margin-top: 31px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--c-ink);
  line-height: 22px;
}
.about__desc {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.9px;
  line-height: 28px;
  color: var(--c-mute);
}
@media (min-width: 768px) {
  .about .break__pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
  }
  .about__fig {
    padding-bottom: 16px;
  }
  .about__name {
    margin-top: 15px;
    font-size: 18px;
    line-height: 18px;
  }
  .about__lead {
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: 0;
    line-height: 26px;
  }

  .about__desc {
    letter-spacing: 0px;
    font-size: 14px;
    line-height: 26px;
  }
  .about .break__sp-only {
    display: block;
  }
}

/* ============================================================
   Highlights（見どころ）
   ============================================================ */
.highlights {
  position: relative;
  background: var(--c-dark);
  overflow: hidden;
  padding: 0 0 100px;
}
.highlights__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}
.highlights__bg > img,
picture.highlights__bg > img {
  position: absolute;
  inset: auto;
  top: -6.52%;
  left: 0;
  width: 100%;
  height: 129.62%;
  max-width: none;
  object-fit: cover;
}
.highlights__inner {
  position: relative;
  left: 0.5px;
  z-index: 1;
  width: min(983px, calc(100% - (var(--page-gutter) * 2)));
  padding-top: 100px;
}
.highlights .sec-title {
  color: var(--c-cream-2);
}
/* 指摘（Figma 2026-07-27）: 「01」〜本文の塊を画像の上端に揃える（旧: 上下中央） */
.hl {
  margin-top: 80px;
  display: grid;
  gap: clamp(20px, 3.33vw, 48px);
  align-items: start;
  grid-template-columns: minmax(0, 1.44764fr) minmax(0, 1fr);
}
.hl:first-of-type {
  margin-top: 96px;
}
.hl:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.44764fr);
}
.hl:nth-child(even) .hl__fig {
  order: 2;
}
.hl__num {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--c-mute-3);
  line-height: 40px;
}
.hl__num::after {
  content: "";
  width: 57px;
  height: 1px;
  background: var(--c-mute-3);
  opacity: 0.6;
}
.hl__title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 400; /* デザイン 22px/400 */
  letter-spacing: 1px;
  color: var(--c-cream-2);
  line-height: 22px;
}
.hl__desc {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 28px;
  color: var(--c-mute-3);
}
@media (min-width: 768px) {
  .highlights .break__pc-only {
    display: block;
  }
  .crop--hl1 > img {
    inset: auto;
    top: -10.64%;
    left: -5.74%;
    width: 110.67%;
    height: 119.84%;
    max-width: none;
  }
  .crop--hl2 > img {
    inset: auto;
    top: -31.59%;
    left: -30.56%;
    width: 161.3%;
    height: 155.1%;
    max-width: none;
  }
  .crop--hl3 > img {
    inset: auto;
    top: -8.88%;
    left: -13.56%;
    width: 125.54%;
    height: 120.85%;
    max-width: none;
  }
  :lang(en) .hl__num {
    line-height: 28px;
  }
  :lang(en) .hl__title {
    margin-top: 17px;
    line-height: 32px;
  }
  :lang(en) .hl:first-of-type .hl__title {
    margin-top: 18px;
  }
  :lang(en) .hl__desc {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  /* SP版の見どころは PC版と構造が違う。
     PCは「01」と見出しが縦積みだが、SPは横並び（01がx=20・見出しがx=71）。
     本文も 14px / 行送り24px で、PCの16pxとは別。 */
  .highlights {
    padding: 0px 0 60px;
  }

  .highlights__inner {
    left: 0;
    width: min(640px, calc(100% - (var(--page-gutter) * 2)));
    padding-top: 60px;
  }
  .highlights__bg {
    opacity: 0.2;
  }
  .highlights__bg > img,
  picture.highlights__bg > img {
    top: -9.86%;
    left: -42.82%;
    width: 144.76%;
    height: 109.86%;
  }
  .highlights .sec-label {
    letter-spacing: 2px;
  }
  /* 指摘（Figma 2026-07-27）: ブロック間の余白を32pxに（実測も約32px） */
  .hl,
  .hl:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .hl:first-of-type {
    margin-top: 32px;
  }
  .hl + .hl {
    margin-top: 48px;
  }
  .hl + .hl + .hl {
    margin-top: 48px;
  }
  /* SPは全項目「画像が上・テキストが下」。偶数項目はHTMLがテキスト先なので画像を前に出す */
  .hl:nth-child(even) .hl__fig {
    order: -1;
  }
  .hl:nth-child(even) {
    row-gap: 24px;
  }
  .hl__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 15px;
  }
  .hl__num {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1.6px;
    line-height: 32px;
  }
  .hl__num::after {
    display: none;
  } /* PCの罫線はSPにはない */
  .hl__title {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 16px;
  }
  .hl__desc {
    grid-column: 1 / -1;
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
  }
  .highlights .break__sp-only {
    display: block;
  }
  .crop--hl1 > img {
    inset: auto;
    top: -8.98%;
    left: -5.81%;
    width: 112.13%;
    height: 114.98%;
    max-width: none;
  }
  .crop--hl2 > img {
    inset: auto;
    top: -39.84%;
    left: -46.29%;
    width: 192.29%;
    height: 175%;
    max-width: none;
  }
  .crop--hl3 > img {
    inset: auto;
    top: -5.86%;
    left: -11.71%;
    width: 122.57%;
    height: 111.72%;
    max-width: none;
  }
  :lang(en) .highlights__bg > img,
  :lang(en) picture.highlights__bg > img {
    top: 0;
    left: -36.95%;
    width: 145.18%;
    height: 101.02%;
  }
  :lang(en) .hl:nth-child(even) {
    row-gap: 16px;
  }
  :lang(en) .hl__body {
    align-items: start;
  }
  :lang(en) .hl__title {
    line-height: 24px;
  }
  :lang(en) .crop--hl3 > img {
    top: 0;
    left: -5.14%;
    width: 110%;
    height: 100%;
  }
}

/* ============================================================
   Materials（素材と技術）
   ============================================================ */
.materials {
  background: var(--c-dark);
  padding: 100px 0;
}
.materials .crop {
  display: block;
}
.materials .sec-title {
  color: var(--c-cream-2);
}
.materials__lead {
  margin-top: 40px;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: var(--c-mute-2);
}
.materials__grid {
  margin-top: 80px;
  /* デザインの行ピッチは 465px。列間は 33px */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px clamp(14px, 2.3vw, 33px);
}
/* 画像と名称の間にヘアライン（デザインはPCのみ。SPは線なし） */
/* 指摘（Figma 2026-07-27）: ヘアライン→名称の余白を24pxに（旧45px） */
.mat__name {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-hairline);
  font-size: 18px;
  font-weight: 400; /* デザイン 18px/400 */
  letter-spacing: 2.7px;
  color: var(--c-cream-2);
  line-height: 18px;
}
.mat__desc {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #c8c2b4;
}
@media (min-width: 768px) {
  .materials .break__pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .materials {
    padding: 60px 0 60px;
  }

  .materials__lead {
    margin-top: 16px;
    font-size: 12px;
    line-height: 30px;
  }

  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 10px;
    margin-top: 32px;
  }
  .mat__name {
    margin-top: 16px;
    padding-top: 0;
    border-top: 0;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 21px;
  }
  .mat__desc {
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px;
    max-width: 158px;
  }
}

/* ============================================================
   Artists（作家・協働者）
   ============================================================ */
.artists {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 100px 0 61px;
}
.artists .sec-title {
  color: var(--c-ink);
}
/* 3人の「写真/役職/氏名/肩書き/紹介文」の各行を subgrid で共有する。
   こうしないと、肩書きが2行になる作家（EN版のBLNK等）だけ紹介文が下がり、
   紹介文の上の罫線が1人だけ段ズレしてデザインが崩れる。
   row-gap は 0 必須（行が5つあるので gap を入れると各行間に隙間が入る）。 */
.artists__grid {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto auto;
  column-gap: clamp(16px, 2.8vw, 40px);
  row-gap: 0;
}
.artist {
  display: grid;
  grid-row: span 6;
  grid-template-rows: subgrid;
}

.artist__insta-icon {
  padding: 16px 0 0 0;
}

.artist__insta-icon > a {
  display: flex;
  gap: 8px;
  align-items: center;
}

.artist__insta-icon > a > img {
  width: 14px;
  height: 14px;
  object-fit: cover;
  max-width: unset;
}

.artist__insta-icon figcaption {
  font-size: 14px;
  color: var(--c-mute);
}

.artist__meta {
  display: contents;
}
.artist__role {
  margin-top: 32px;
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--c-gold);
  line-height: 15px;
}
/* h3 のデフォルト太字(700)に引きずられないよう明示。デザインは 22px/400 regular */
.artist__name {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--c-ink);
  line-height: 33px;
}

.artist__name > span {
  color: var(--c-mute-2);
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  padding-left: 16px;
}

.artist__skill {
  margin-top: 8px;
  font-family: var(--ff-serif);
  font-size: 11px;
  color: var(--c-mute-2);
  line-height: 17px;
}
/* PCは skill と 紹介文の間にヘアライン */
.artist__desc {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-hairline);
  font-size: 14px;
  line-height: 24px;
  color: var(--c-mute);
}
@media (min-width: 768px) {
  .artists {
    padding-bottom: 76px;
  }
  .artist__skill {
    letter-spacing: 0.88px;
  }
  .artist__insta-icon {
    padding-top: 15px;
  }
  .artist__insta-icon > a,
  .artist__insta-icon figcaption {
    line-height: 14px;
  }
}
@media (max-width: 767px) {
  /* SPは 写真(左) + メタ(右) を横並びにし、紹介文を下に全幅で敷く。
     デザイン: 写真 100x100 @x20 / role・name・skill @x140 / desc @x20(下・全幅) */
  .artists {
    padding: 60px 0;
  }
  /* SPの罫線は「作家ごとの区切り」なので、紹介文の上ではなく作家ブロックの下 */
  /* SPはPCと別レイアウト（写真左＋メタ右）なので subgrid を打ち消す */
  .artists__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    margin-top: 32px;
  }
  .artist {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: none;
    grid-row: auto;
    column-gap: 20px;
    align-items: start;
  }
  .artist__photo {
    aspect-ratio: 1;
  }
  .artist__meta {
    display: block;
  }
  .artist:not(:last-child) {
    padding-bottom: 29px;
    margin-bottom: 19px;
    /* border-bottom: 1px solid var(--c-hairline); */
  }
  .artist__meta {
    grid-column: 2;
  }
  .artist__role {
    margin-top: 1px;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 1px;
  }
  .artist__name {
    margin-top: 8px;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 30px;
  }

  .artist__name > span {
    display: block;
    padding-left: unset;
    margin-top: 4px;
    line-height: 16px;
  }

  .artist__skill {
    margin-top: 12px;
    font-size: 14px;
    line-height: 16px;
  }
  .artist__desc {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 0;
    border-top: 1px solid var(--c-hairline);
    font-size: 14px;
    line-height: 26px;
  }

  .artist__insta-icon {
    grid-column: 1 / -1;
    width: max-content;
    padding: 11px 0 0;
  }
  .artist__insta-icon > a,
  .artist__insta-icon figcaption {
    line-height: 14px;
  }
}

/* ============================================================
   Works（作品・インスタレーション）
   ============================================================ */
/* 下は — 展示空間 — の下の余白。デザインは約82px（旧22pxは詰まりすぎ）。
   総高が数十px伸びるが、視覚的な正しさを優先（デザイン準拠） */
.works {
  background: var(--c-dark-warm);
  padding: 100px 0;
}
.works .crop {
  display: block;
}
.works .sec-label {
  line-height: 15px;
}
.works .sec-title {
  color: var(--c-cream-3);
  line-height: 30px;
  letter-spacing: 4px;
}
.work {
  margin-top: 56px;
}
/* 作品名の列は内容にあわせて自動幅にする。固定比率だと列が足りず
   「— 展示空間 —」が2行に折れたり、EN版で "the" だけが行末に飛び出す。
   名前は nowrap にして、改行位置は HTML 側の <br> で明示的に決める（デザイン準拠）。 */
/* 指摘（Figma 2026-07-27）: 画像→キャプションの余白を40pxに（旧60px） */
/* 指摘（Figma 2026-07-27）: 作品名を説明文の「上底」に合わせる。
   pc_jp.txt 実測でも全4件が「作品名のベースライン ≒ 説明文1行目のベースライン」
   （産地の手/境界の布/流れる書 は name y=8267 に対し desc y=8263 など）。
   center だと3行の説明文に対して作品名が23px下がっていた。
   なお1行だけの「— 展示空間 —」は baseline でも見た目上ほぼ中央に来るので、
   以前の「1行のときは中心を合わせたい」という指摘とも両立する。 */
.work__body {
  margin-top: 40px;
  display: grid;
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 64px;
}

.works__pair .work__body {
  grid-template-columns: 1fr;
  column-gap: 0;
}

.work__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 2px;
  color: #c0beba;
  white-space: nowrap;
}
.work__desc {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 24px;
  color: #c0beba;
  opacity: 1;
}

.work__desc-hightlight {
  /* opacity: 0.5; */
  font-size: 14px;
}
.works__pair {
  margin-top: 63px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px;
}
.works__pair .work {
  margin-top: 0;
}
@media (min-width: 768px) {
  .works .break__pc-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .works .inner > .work:first-of-type {
    margin-top: 96px;
  }
  .work-item1 .work__body {
    grid-template-columns: 206px minmax(0, 1fr);
  }
  .works .inner > .work:last-of-type {
    margin-top: 86px;
  }
  .works__pair .work__desc {
    margin-top: 15px;
  }
  .works__pair .work:first-child .work__desc {
    margin-top: 16px;
  }
  .works__pair .work:first-child .work__name {
    line-height: 32px;
  }
  .works .inner > .work:last-of-type .work__desc {
    margin-top: 2px;
  }
}
@media (max-width: 767px) {
  .works {
    padding: 60px 0;
    margin-top: 0;
  }
  .works .sec-label {
    line-height: 14px;
    font-weight: 400;
  }
  .works .sec-title {
    line-height: 39px;
    letter-spacing: 2px;
  }
  .works .break__sp-only {
    display: block;
  }
  /* 指摘（Figma 2026-07-27）: 作品ブロック間の余白を48pxに。
     sp_jp.txt 実測でも「本文下端→次の画像上端」は3箇所とも約48px。
     .work / .works__pair の margin-top と pair内の gap が同じ境界に効くので3つとも揃える。 */
  .work {
    margin-top: 48px;
  }

  .work__desc-hightlight {
    font-size: 12px;
  }

  .work.work-item1 {
    margin-top: 32px;
  }
  .work__body {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  /* SPの作品名はデザインでは白(#fff)ではなく #F7F5F0 / 16px */
  .work__name {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--c-cream);
    white-space: normal; /* SPは1カラムなので折り返し可 */
    line-height: 16px;
  }
  .work__desc {
    font-size: 14px;
    line-height: 24px;
    opacity: 1;
    letter-spacing: 0px;
  } /* SPは0.75（PCは0.5） */
  .works__pair {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 47px;
  }
  .works__pair .work__body {
    grid-template-columns: 1fr;
  }
  .works .inner > .work:last-of-type {
    margin-top: 47px;
  }
}

/* ============================================================
   Visit（来場案内）
   ============================================================ */
.visit {
  background: var(--c-light-2);
  color: var(--c-ink-2);
  padding: 100px 0;
}
.visit .crop {
  display: block;
}
.visit .sec-label {
  line-height: 15px;
}
.visit .sec-title {
  color: var(--c-ink-2);
  line-height: 45px;
}
.visit__grid {
  margin-top: 80px;
  display: grid;
  gap: 80px;
  align-items: start;
  /* 左（会期・アクセス等の本文）に下限を持たせ、足りない分は地図側を削る。
     下限がないと中間幅で dt(128px) に押されて dd が 137px まで潰れる。 */
  grid-template-columns: 358px minmax(0, 546px);
}
.visit__dl {
  display: grid;
  grid-template-columns: minmax(76px, 128px) minmax(0, 1fr);
  grid-template-rows: 72px 84px 84px 84px 125px 112px;
}
.visit__dl dt {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--c-label);
  height: 100%;
  padding: 32px 0 0;
  border-top: 1px solid var(--c-hairline);
}
.visit__dl dd {
  font-size: 14px;
  line-height: 20px;
  color: var(--c-ink-2);
  height: 100%;
  padding: 32px 0 0;
  border-top: 1px solid var(--c-hairline);
}
.visit__dl dt:first-of-type,
.visit__dl dd:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.visit__note {
  display: block;
  margin-top: 0;
  font-size: 12px;
  color: var(--c-label);
}
.visit__figs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visit__cap {
  margin-top: 6px;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.55px;
  color: var(--c-mute-2);
}
/* テキストに追従する下線（border ではなく text-decoration）。
   デザインの下線はテキスト＋矢印の幅ぶんだけ引かれている。 */
.visit__link {
  margin-top: 92px;
  display: inline-block;
  width: 212px;
  white-space: nowrap;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.56px;
  color: var(--c-mute);
  border-bottom: 1px solid var(--c-hairline);
  padding-bottom: 2.5px;
  transition:
    opacity 0.2s,
    text-decoration-color 0.2s;
}
/* 矢印の手前の間隔。以前は word-spacing:10px を使っていたが、これは
   「すべての半角スペース」に効くため、単語間にスペースが5つあるEN版で
   語間が広がりすぎていた（JP版はスペースが矢印前の1つだけなので偶然成立していた）。
   矢印の span に margin を持たせる形に変更（指摘 2026-07-27）。 */
.visit__link > span {
  margin-left: 10px;
}
/* EN版デザインは矢印を本文と同じテキスト内に置いている＝通常のスペース1つぶん */
:lang(en) .visit__link > span {
  margin-left: 0;
}
.visit__label-sp,
.visit__title-sp {
  display: none;
}
.visit__link:hover {
  opacity: 0.75;
  text-decoration-color: var(--c-mute);
}
@media (min-width: 768px) {
  .visit .break__pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .visit {
    padding: 60px 0 60.5px;
  }
  .visit .sec-label {
    line-height: 14px;
  }
  .visit .sec-title {
    line-height: 39px;
  }
  /* デザインSPの並び順は 情報(dl) → 写真 → Instagramリンク。
     左カラムを display:contents で解体し、order で写真をリンクの前に入れる。 */
  .visit__grid {
    /* align-items:stretch 必須。PC由来の start のままだと crop 幅が0に潰れる */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-top: 48px;
  }
  .visit__info {
    display: contents;
  }
  .visit__dl {
    order: 1;
    grid-template-columns: 91px 1fr;
    grid-template-rows: 44px 68px 67px 69px 109px 108px;
  }
  .visit__figs {
    order: 2;
    gap: 8px;
  }
  /* text-decoration の下線はテキスト幅に付くので、inline-block を潰さないよう自幅に */
  .visit__link {
    order: 3;
    margin-top: -8px;
    align-self: flex-start;
    width: 216px;
    padding-bottom: 8px;
  }
  .visit__dl dt,
  .visit__dl dd {
    font-size: 14px;
    line-height: 20px;
    padding: 24px 0 23px;
  }
  .visit__dl dt:first-of-type,
  .visit__dl dd:first-of-type {
    padding-top: 0;
    padding-bottom: 24px;
  }
  .visit__dl dt:nth-of-type(5),
  .visit__dl dd:nth-of-type(5) {
    padding-bottom: 22px;
  }
  .visit__note {
    margin-top: 4px;
  }
  :lang(ja) .visit__route {
    font-size: inherit;
    letter-spacing: inherit;
    white-space: normal;
  }
}

/* ============================================================
   Tablet / intermediate
   1カラムSPと3カラムPCの間を、内容が潰れない2カラムでつなぐ。
   ============================================================ */
@media (min-width: 768px) and (max-width: 839px) {
  .news__grid {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }
  .news__ig {
    max-width: 600px;
  }
  .concept__inner {
    grid-template-columns: 1fr;
  }
  .concept__fig {
    aspect-ratio: 16 / 9;
  }
  .concept__fig > img,
  picture.concept__bg > img {
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hl,
  .hl:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .hl:nth-child(even) .hl__fig {
    order: -1;
  }
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .visit__figs {
    max-width: 600px;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .about__grid,
  .materials__grid,
  .artists__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about__grid > :last-child,
  .artists__grid > :last-child {
    grid-column: 1 / -1;
    width: calc(50% - 16px);
    justify-self: center;
  }
  .artists__grid {
    grid-template-rows: none;
    row-gap: 56px;
  }
  .artist {
    display: block;
    grid-row: auto;
  }
  .artist__meta {
    display: block;
  }
  .artist__photo {
    aspect-ratio: 3 / 4;
  }
  .work__name {
    white-space: normal;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--c-dark-warm);
  text-align: center;
  padding: 208px 20px 100px;
}
.footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.footer__inner {
  position: relative;
  z-index: 1;
}
/* 指摘（Figma 2026-07-27）: FVのSCROLLと同じ縦の直線をフッター上部にも入れる。
   .hero__scroll::after と同じ 1px / var(--c-cream) / opacity .5。指摘はPCフレームのみ。 */
/* .footer__inner::before {
  content: "";
  background: url("../img/footer-line.png");
  display: block;
  width: 1px;
  height: 44px;
  margin: 0 auto 48px;
  background: var(--c-cream);
  opacity: 0.5;
} */

.footer::before {
  content: "";
  position: absolute;
  background-image: url("../img/footer-line.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1px;
  height: 60px;
  top: 100px;
  left: calc(50% - 5.5px);
}
.footer__label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--c-gold-2);
  line-height: 15px;
}
.footer__title {
  margin-top: 25px;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--c-cream);
  line-height: 54px;
}
.footer__en {
  margin-top: 14px;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--c-gold-2);
  line-height: 31px;
}
.footer__ig {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 1.44px;
  color: var(--c-cream);
  line-height: 18px;
  transition: opacity 0.2s;
}
.footer__ig:hover {
  opacity: 0.7;
}
.footer__nav {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__nav a {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--c-light-2);
  transition: color 0.2s;
  line-height: 15px;
}
.footer__nav a:hover {
  color: var(--c-cream);
}
.footer__copy {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--c-mute-5);
  line-height: 16px;
}
.footer__label-sp,
.footer__copy-sp,
.footer__about-sp {
  display: none;
}
.footer__ig-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex: none;
}
picture.footer__bg > img {
  inset: auto;
  left: -18.72%;
  top: -31.68%;
  width: 144.39%;
  height: auto;
  max-width: none;
  object-fit: fill;
}
@media (min-width: 768px) {
  :lang(en) .news {
    padding-bottom: 100px;
  }
  :lang(en) .hl__desc {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 148px 20px 60px;
  }

  .footer::before {
    top: 60px;
    left: calc(50% + 1.5px);
    height: 48px;
  }
  .footer__inner::before {
    /* display: none; */
  } /* 縦線の指摘はPCのみ */
  .footer__title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 3px;
  }
  .footer__en {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 4.48px;
    line-height: 21px;
  }
  .footer__nav {
    gap: 13px 0;
    margin-top: 43px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  /* SPデザインは #9A9590 ではなく #F7F5F0 を不透明度0.35で敷いている */
  .footer__nav a {
    font-size: 10px;
    /* color: var(--c-cream); */
  }
  .footer__ig {
    margin-top: 40px;
    line-height: 18px;
    letter-spacing: 1px;
  }
  .footer__copy {
    margin-top: 48px;
    font-size: 10px;
    line-height: 15px;
  }
  .footer__label-pc,
  .footer__copy-pc,
  .footer__about-pc {
    display: none;
  }
  .footer__label-sp,
  .footer__copy-sp,
  .footer__about-sp {
    display: inline;
  }
  picture.footer__bg > img {
    left: -13.76%;
    top: -28.2%;
    width: 130.08%;
    height: auto;
  }
}

/* ============================================================
   Contact（お問い合わせフォーム・別ページ）
   デザイン: PCは [ラベル(左) + 入力(右)] の2カラム。SPは縦積み。
   背景 #F0EDE6。フィールドは #F7F5F0 + 罫線 #DDD8CE。
   ============================================================ */
.contact {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 114px 0 121px;
}
.contact .sec-title {
  color: var(--c-ink);
}
.contact__title {
  margin-top: 8px;
}

.cform {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ハニーポットは画面外へ（display:none だと一部ボットに読まれるため位置で隠す） */
.cform__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 1フィールド = ラベル列(268px) + 入力列 */
.cfield {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  align-items: start;
}
.cfield__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
}
.cfield__label {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--c-ink);
}
/* デザイン: バッジ 40x21 / rx3 / 必須 #FA4848・任意 #6A6A6A */
.cfield__req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 21px;
  flex: none;
  padding: 0 7px; /* EN "Required" が入るよう可変 */
  font-family: var(--ff-sans);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background: var(--c-required);
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.cfield__req--opt {
  background: var(--c-optional);
}

.cfield__body {
  min-width: 0;
}
/* デザイン: 入力欄 高さ44px / rx3.5 / fill #F7F5F0 / stroke #1C1917 */
.cinput {
  width: 100%;
  height: 44px;
  background: var(--c-light-2);
  border: 1px solid var(--c-field-bd);
  border-radius: 3.5px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.5;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cinput::placeholder {
  color: #b1b1b1;
}
.cinput:focus {
  outline: none;
  border-color: var(--c-gold);
}
/* デザインの textarea は 715x179。高さ44pxの指定を打ち消す */
.ctextarea {
  height: auto;
  min-height: 179px;
  padding: 14px 20px;
  resize: vertical;
  display: block;
}

/* select にキャレットを付与（appearance を消して自前で描く） */
.cselect {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-mute) 50%),
    linear-gradient(135deg, var(--c-mute) 50%, transparent 50%);
  background-position:
    right 20px center,
    right 15px center;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
.cselect:required:invalid {
  color: #b1b1b1;
} /* 未選択時はプレースホルダ色 */
.cselect option {
  color: var(--c-ink);
}

/* エラーメッセージ */
.cfield__err {
  margin-top: 8px;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-error);
}
.cfield__err:empty {
  display: none;
}
.cfield.is-invalid .cinput {
  border-color: var(--c-error);
  background: #fbf3f2;
}

/* 下部ブロック（確認チェック・reCAPTCHA注記・送信）は中央寄せ */
.cform__foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.cform__confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ccheck {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--c-ink);
  cursor: pointer;
}
.ccheck input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/* デザイン: 18.5px / rx2.25 / fill white / stroke black */
.ccheck__box {
  width: 18.5px;
  height: 18.5px;
  flex: none;
  border: 1px solid var(--c-ink);
  border-radius: 2.25px;
  background: #fff;
  position: relative;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.ccheck input:checked + .ccheck__box {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.ccheck input:checked + .ccheck__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ccheck input:focus-visible + .ccheck__box {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.cform__confirm.is-invalid .ccheck__box {
  border-color: var(--c-error);
}

.cform__recaptcha {
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-mute);
  max-width: 520px;
}
.cform__recaptcha a {
  color: var(--c-link);
  text-decoration: underline;
}

/* デザイン: rect 333x64 rx=32 → 完全な角丸（ピル型）。四角ではない */
.cform__submit {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 333px;
  max-width: 100%;
  height: 64px;
  background: var(--c-ink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.cform__submit:hover {
  opacity: 0.85;
}
.cform__submit:disabled {
  opacity: 0.5;
  cursor: default;
}

/* 送信完了 / エラー */
.cform__done {
  margin-top: 40px;
  text-align: center;
  padding: 72px 20px;
  border-top: 1px solid var(--c-hairline);
}
.cform__done-title {
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--c-ink);
}
.cform__done-text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-mute);
}
/* デモモード時の注記（contact.js が動的に挿入）。
   本番でバックエンド接続後は DEMO_MODE=false になり出なくなる。 */
.cform__demo {
  margin: 28px auto 0;
  max-width: 520px;
  padding: 14px 18px;
  border: 1px solid var(--c-hairline);
  border-radius: 3px;
  background: var(--c-light-2);
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-mute);
}
.cform__done-back {
  margin-top: 32px;
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 1.56px;
  color: var(--c-mute);
  text-decoration: underline;
  text-decoration-color: var(--c-hairline);
  text-underline-offset: 8px;
  transition: text-decoration-color 0.2s;
}
.cform__done-back:hover {
  text-decoration-color: var(--c-mute);
}
.cform__sending-error {
  margin-top: 24px;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-error);
  text-align: center;
}

@media (max-width: 767px) {
  .contact {
    padding: 64px 0 80px;
  }
  .cform {
    margin-top: 32px;
    gap: 22px;
  }
  .cfield {
    grid-template-columns: 1fr;
  }
  .cfield__head {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .cinput {
    font-size: 16px;
    padding: 0 16px;
  } /* 16px維持でiOSズーム抑止 */
  .ctextarea {
    min-height: 150px;
    padding: 13px 16px;
  }
  .cform__foot {
    margin-top: 18px;
  }
  .ccheck {
    font-size: 14px;
  }
  .cform__done {
    padding: 56px 12px;
  }
  .cform__done-title {
    font-size: 20px;
  }
}

/* ============================================================
   背景画像（SP）の不透明度
   ============================================================ */
@media (max-width: 767px) {
  .concept__bg {
    opacity: 0.3;
  }
  .highlights__bg {
    opacity: 0.2;
  }

  .footer__bg {
    opacity: 0.1;
  }
}

/* ============================================================
   EN版のタイポグラフィ差分

   英語フレームは日本語フレームと字送り・太さが別物。JPの値をそのまま
   当てると英文が横に伸びて「デザインより大きい」状態になる。
   （例: CONCEPT小見出しは JP ls=5px / EN ls=0。50字あるので約250px伸びる）
   :lang(en) は詳細度(0,2,0)で素のクラス(0,1,0)に勝つため、
   SP用の上書きは必ずこのPC用ルールより後ろに置くこと。
   ============================================================ */
/* --- (a) フォントファミリの差分 ---
   `:lang(en) body` で全体を EB Garamond にしているが、英語フレームでも
   セクションラベル(NEWS/CONCEPT等)・SCROLL・フッター類は Noto Serif JP 指定。
   これらは翻訳対象ではないブランド表記のため、和文書体のまま組まれている。 */
:lang(en) .sec-label,
:lang(en) .hero__scroll,
:lang(en) .materials__lead,
:lang(en) .footer__label,
:lang(en) .footer__en,
:lang(en) .footer__ig,
:lang(en) .footer__copy {
  font-family: var(--ff-serif);
}

/* 役職・肩書きは逆に JP版が Noto Sans、EN版は EB Garamond。
   幅広の Noto Sans のままだと BLNK 等の肩書きが2行に折れる（設計は1行）。 */
:lang(en) .artist__role,
:lang(en) .artist__skill {
  font-family: var(--ff-en);
  letter-spacing: 1px;
}
:lang(en) .visit__link {
  font-family: var(--ff-en);
} /* 設計 13px/400 EBG */
:lang(en) .footer__ig {
  letter-spacing: 1px;
}
:lang(en) .footer__nav a {
  font-size: 11px;
  letter-spacing: normal;
}

/* --- (b) 見出し --- */
:lang(en) .sec-title {
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 45px;
}
:lang(en) .works .sec-title {
  letter-spacing: 2px;
} /* JPの4pxを打ち消す */

/* --- (c) 本文の太さ・字送り（英語フレームはJPより太い指定が多い） --- */
:lang(en) .hero__label {
  font-weight: 500;
}
:lang(en) .hero__en {
  font-weight: 500;
}

:lang(en) .news__date {
  font-weight: 400;
}
:lang(en) .news__tag {
  font-weight: 400;
}
:lang(en) .news__text {
  font-weight: 500;
  letter-spacing: 0px;
}
:lang(en) .news__ig-lead {
  font-weight: 500;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  :lang(en) .news .sec-label {
    line-height: 28px;
  }
  :lang(en) .news::after {
    bottom: 15px;
  }
  :lang(en) .news__ig {
    transform: translateY(-1px);
  }
  :lang(en) .news__ig-grid {
    margin-top: 32px;
  }
  :lang(en) .news__ig-link {
    margin-top: 16px;
    gap: 8px;
    font-weight: 500;
    line-height: 16px;
  }
  :lang(en) .news__ig-icon {
    position: relative;
    top: 2px;
  }
}

:lang(en) .concept__lead {
  width: 410px;
  margin-top: 40px;
  margin-left: 1px;
  letter-spacing: 1px;
} /* 設計 21px/600 ls=1px */
:lang(en) .concept__inner > div:first-child {
  padding-top: 67px;
}
:lang(en) .concept__sub {
  margin-left: 1px;
}
:lang(en) .concept__sub h3 {
  width: 466px;
  line-height: 31px;
  letter-spacing: normal;
} /* 設計 22px/600 ls=0 */
:lang(en) .concept__sub p {
  width: 481px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1px;
} /* 設計 16px/500 ls=1px */

:lang(en) .about__lead {
  font-weight: 500;
}
:lang(en) .about__name {
  letter-spacing: 2px;
}
:lang(en) .about__desc {
  font-weight: 500;
  font-size: 14px;
}

:lang(en) .hl__title {
  /* letter-spacing: normal; */
}
:lang(en) .hl__desc {
  font-weight: 400;
}

:lang(en) .mat__name {
  letter-spacing: 2px;
}

:lang(en) .artist__name {
  letter-spacing: 1px;
}

:lang(en) .work__desc {
  font-weight: 400;
  letter-spacing: 1px;
}

:lang(en) .nav__link {
    font-weight: 500;
  }

:lang(en) .materials__grid {
  gap: 40px;
}

:lang(en) .work {
  margin-top: 80px;
}

/* EN / PC: Figma の英語フレームは見出しの行送りが45px。
   見出し後の余白を同量だけ戻し、各コンテンツの開始位置は維持する。 */
@media (min-width: 768px) {
  :lang(en) .hero__label,
  :lang(en) .hero__title,
  :lang(en) .hero__en {
    left: 0;
  }
  :lang(en) .hero__label {
    letter-spacing: 2.86px;
  }
  :lang(en) .hero__title {
    letter-spacing: 6.32px;
  }
  :lang(en) .hero__en {
    left: -1px;
    margin-top: 7px;
    line-height: 80px;
    letter-spacing: 7.3px;
  }
  :lang(en) .hero__date {
    margin-top: 87px;
    gap: 3.64px;
  }
  :lang(en) .hero__hours {
    margin-top: 14px;
    line-height: 28px;
    letter-spacing: 2.8px;
  }
  :lang(en) .hero__venue {
    margin-top: 14px;
    line-height: 28px;
    letter-spacing: 0.96px;
  }
  :lang(en) .hero__venue-side {
    text-transform: lowercase;
  }
  :lang(en) .hero__scroll {
    bottom: -16px;
  }

  :lang(en) .sec-label {
    line-height: 15px;
  }
  :lang(en) .news .sec-label {
    line-height: 28px;
  }

  :lang(en) .about {
    padding-bottom: 80px;
  }
  :lang(en) .about__lead {
    margin-top: 24px;
    line-height: 30px;
  }
  :lang(en) .about__fig {
    padding-bottom: 31px;
  }
  :lang(en) .about__name {
    margin-top: 32px;
    line-height: 33px;
  }
  :lang(en) .about__desc {
    line-height: 20px;
  }

  :lang(en) .hl:first-of-type,
  :lang(en) .artists__grid {
    margin-top: 80px;
  }
  :lang(en) .materials__lead {
    margin-top: 24px;
  }
  :lang(en) .materials {
    padding-bottom: 76px;
  }
  :lang(en) .materials .sec-title {
    line-height: 30px;
  }
  :lang(en) .materials__lead {
    line-height: 30px;
  }
  :lang(en) .materials__grid {
    column-gap: 33px;
    row-gap: 40px;
  }
  :lang(en) .mat__name {
    line-height: 27px;
  }
  :lang(en) .mat__desc {
    margin-top: 11px;
  }

  :lang(en) .artists {
    padding-bottom: 76px;
  }
  :lang(en) .artist__insta-icon > a,
  :lang(en) .artist__insta-icon figcaption {
    line-height: 14px;
  }

  :lang(en) .works .inner > .work:first-of-type {
    margin-top: 80px;
  }
  :lang(en) .works__pair .work {
    margin-top: 0;
  }
  :lang(en) .works__pair {
    margin-top: 63.5px;
  }
  :lang(en) .works .inner > .work:last-of-type {
    margin-top: 62px;
  }
  :lang(en) .work-item1 .work__body {
    grid-template-columns: 151px minmax(0, 1fr);
    column-gap: 58px;
  }
  :lang(en) .work-item1 .work__desc {
    max-width: 771px;
  }
  :lang(en) .works .inner > .work:last-of-type .work__body {
    grid-template-columns: 195px minmax(0, 1fr);
    column-gap: 54px;
  }
  :lang(en) .work__name {
    line-height: 24px;
  }
  :lang(en) .works__pair .work:first-child .work__name {
    line-height: 24px;
  }
  :lang(en) .work__desc {
    line-height: 26px;
  }
  :lang(en) .works__pair .work__desc,
  :lang(en) .works__pair .work:first-child .work__desc {
    margin-top: 16px;
  }
  :lang(en) .works .inner > .work:last-of-type .work__desc {
    margin-top: 0;
    line-height: 24px;
  }
  :lang(en) .works {
    padding-bottom: 100px;
  }

  :lang(en) .visit__grid {
    margin-top: 80px;
  }
  :lang(en) .visit__dl {
    grid-template-rows: 64px 88px 68px 88px 128px 144px;
  }
  :lang(en) .visit__dl dt,
  :lang(en) .visit__dl dd {
    height: 100%;
    padding: 24px 0 0;
    line-height: 20px;
  }
  :lang(en) .visit__dl dt:first-of-type,
  :lang(en) .visit__dl dd:first-of-type {
    padding-top: 0;
  }
  :lang(en) .visit__link {
    margin-top: 133px;
    width: 300px;
    padding-bottom: 3px;
    line-height: 20px;
  }
  :lang(en) .visit {
    padding-bottom: 99px;
  }

  :lang(en) .footer {
    padding-bottom: 100px;
  }
  :lang(en) .footer__nav {
    margin-top: 33.5px;
    column-gap: 20.75px;
  }
}

/* --- SP。:lang(en) は詳細度(0,2,0)で素のクラスに勝つため、
       SP用の上書きは必ず上のPC用ルールより後ろに置く --- */
@media (max-width: 767px) {
  :lang(en) .news .sec-label {
    line-height: 13px;
  }
  :lang(en) .news__text {
    font-weight: 400;
    letter-spacing: normal;
  }
  :lang(en) .news__item:first-child .news__text {
    width: auto;
  }
  :lang(en) .news__ig {
    transform: none;
  }
  :lang(en) .news__ig-link {
    margin-top: 24px;
    gap: 16px;
    font-weight: 400;
    line-height: 16px;
  }
  :lang(en) .news__ig-icon {
    top: 0;
  }
  :lang(en) .burger {
    padding-left: 3px;
  }
  :lang(en) .hero__label {
    letter-spacing: 1.9px;
  }
  :lang(en) .hero__title {
    margin-top: 8px;
    line-height: 49px;
    letter-spacing: clamp(1.7px, 0.87vw, 3.4px);
  }
  :lang(en) .hero__en {
    margin-top: 16px;
    letter-spacing: 4.5px;
  }
  :lang(en) .hero__venue-side {
    margin-left: 6px;
    text-transform: none;
  }
  :lang(en) .hero__scroll {
    bottom: 29px;
    line-height: 28px;
  }
  :lang(en) .hero__scroll::after {
    position: absolute;
    top: 25px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  :lang(en) .sec-title {
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 39px;
  }

  :lang(en) .about .sec-title {
    letter-spacing: 1px;
  }

  :lang(en) .hero__label {
    font-weight: 400;
  }
  :lang(en) .hero__en {
    font-weight: 400;
  }
  :lang(en) .hero__hours {
    letter-spacing: 1px;
  }
  :lang(en) .hero__venue {
    letter-spacing: normal;
  }
  :lang(en) .hero__date .w {
    letter-spacing: 1px;
  }

  :lang(en) .concept__lead {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: normal;
  }
  :lang(en) .concept .sec-label {
    line-height: 13px;
  }
  :lang(en) .concept__sub {
    margin-left: 0;
  }
  :lang(en) .concept__sub h3 {
    width: auto;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: normal;
  }
  :lang(en) .concept__sub p {
    width: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: normal;
  }
  :lang(en) picture.concept__bg > img {
    top: -71.2%;
    left: -55.5%;
    width: 230.22%;
  }

  :lang(en) .about__lead {
    font-weight: 400;
    letter-spacing: normal;
    margin-top: 16px;
    line-height: 24px;
  }
  :lang(en) .about__name {
    font-weight: 500;
    letter-spacing: 1px;
  }
  :lang(en) .about__desc {
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 24px;
  }
  :lang(en) .about__grid {
    margin-top: 32px;
    gap: 40px;
  }
  :lang(en) .about__name {
    margin-top: 15px;
  }
  :lang(en) .about__grid > :first-child .about__desc,
  :lang(en) .about__grid > :last-child .about__desc {
    margin-top: 12px;
  }
  :lang(en) .about__grid > :last-child .about__desc {
    line-height: 20px;
  }

  :lang(en) .hl__num {
    font-weight: 400;
  }
  :lang(en) .hl__desc {
    letter-spacing: normal;
  }

  :lang(en) .materials__lead {
    font-family: var(--ff-en);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: normal;
  }
  :lang(en) .mat__name {
    letter-spacing: 1px;
  }
  :lang(en) .mat__desc {
    line-height: 18px;
  }
  :lang(en) .materials__grid {
    column-gap: 10px;
    row-gap: 24px;
  }
  :lang(en) .materials__grid .mat:nth-child(1) .mat__desc {
    max-width: 147px;
  }
  :lang(en) .materials__grid .mat:nth-child(2) .mat__desc {
    max-width: 158px;
  }
  :lang(en) .materials__grid .mat:nth-child(3) .mat__desc {
    max-width: 149px;
  }
  :lang(en) .materials__grid .mat:nth-child(4) .mat__desc {
    max-width: 170px;
  }
  :lang(en) .materials__grid .mat:nth-child(5) .mat__desc {
    max-width: 146px;
  }
  :lang(en) .materials__grid .mat:nth-child(6) .mat__desc {
    max-width: 155px;
  }

  /* PC用の ls=1px がSPへ漏れないように戻す（EN SP設計は字送りなし） */
  :lang(en) .artist__role {
    font-size: 12px;
    letter-spacing: normal;
  }
  :lang(en) .artist__skill {
    letter-spacing: normal;
  }
  :lang(en) .artist__name {
    letter-spacing: 1px;
  }

  :lang(en) .work__desc {
    letter-spacing: normal;
    line-height: 24px;
  }
  :lang(en) .work__name {
    font-weight: 600;
  }
  :lang(en) .work {
    margin-top: 48px;
  }
  :lang(en) .work.work-item1 {
    margin-top: 32px;
  }
  :lang(en) .works__pair {
    gap: 47px;
    margin-top: 46px;
  }
  :lang(en) .works__pair .work {
    margin-top: 0;
  }
  :lang(en) .works__pair .work:first-child .work__desc {
    padding-bottom: 21px;
  }
  :lang(en) .works .inner > .work:last-of-type {
    margin-top: 47px;
  }
  :lang(en) .works {
    border-top: 1px solid #2e2b27;
    padding-top: 59px;
    padding-bottom: 60px;
  }
  :lang(en) .visit__link {
    letter-spacing: 1px;
    width: 242px;
  }

  :lang(en) .visit__label-sp,
  :lang(en) .visit__title-sp {
    display: inline;
  }
  :lang(en) .visit__title-pc {
    display: none;
  }
  :lang(en) .visit .sec-title {
    font-family: var(--ff-serif);
  }

  :lang(en) .visit__grid {
    margin-top: 32px;
  }
  :lang(en) .visit__dl {
    grid-template-rows: 52px 80px 54px 54px 76px 120px;
  }
  :lang(en) .visit__dl dt,
  :lang(en) .visit__dl dd {
    height: 100%;
    padding: 20px 0 0;
  }
  :lang(en) .visit__dl dt {
    line-height: 16px;
  }
  :lang(en) .visit__dl dt:first-of-type,
  :lang(en) .visit__dl dd:first-of-type {
    padding-top: 0;
    padding-bottom: 0;
  }
  :lang(en) .visit__dl dd:nth-of-type(4) br,
  :lang(en) .visit__dl dd:nth-of-type(5) > br:first-of-type {
    display: none;
  }
  :lang(en) .visit__note {
    margin-top: 4px;
  }
  :lang(en) .visit__figs {
    margin-top: 22px;
  }

  :lang(en) .news {
    padding-bottom: 60px;
  }
  :lang(en) .concept__inner {
    padding-bottom: 60px;
  }
  :lang(en) .about {
    padding-bottom: 60px;
  }
  :lang(en) .highlights {
    padding-bottom: 60px;
  }
  :lang(en) .materials {
    padding-bottom: 60px;
  }
  :lang(en) .artists {
    padding-bottom: 60px;
  }
  :lang(en) .artist__desc {
    line-height: 24px;
  }
  :lang(en) .artist__insta-icon > a,
  :lang(en) .artist__insta-icon figcaption {
    line-height: 14px;
  }
  :lang(en) .artist__insta-icon {
    padding-top: 11px;
  }
  :lang(en) .artist:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 48px;
  }

  :lang(en) .footer {
    padding: 140px 20px 68px;
  }
  :lang(en) .footer__nav {
    margin-top: 25.5px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 20px;
  }
  :lang(en) .footer__nav a {
    font-size: 12px;
    letter-spacing: normal;
  }
  :lang(en) .footer__copy {
    margin-top: 32px;
    font-size: 11px;
    line-height: 15px;
  }
}

/* Instagram グリフ（アイコン画像がデザインに無いため字形で代替） */
.ig-mark {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 4px;
  position: relative;
  flex: none;
}
.ig-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.ig-mark::after {
  content: "";
  position: absolute;
  top: 1.5px;
  right: 1.5px;
  width: 1.5px;
  height: 1.5px;
  border-radius: 50%;
  background: currentColor;
}
