:root {
  --paper: #f1eadb;
  --ink: #15120f;
  --line: #3b342b;
  --muted: #5f574d;
  --stamp: #d12424;
  --bg: #ffffff;

  --page-gutter: clamp(24px, 6vw, 80px);
  --section-gutter: clamp(24px, 4.5vw, 48px);
  --month-tabs-width: 40px;
  --content-gutter: calc(var(--month-tabs-width) + var(--section-gutter));

  --project-info-width: 560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
  line-height: 1.82;
  overflow-x: hidden;
  font-synthesis-weight: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--stamp);
  outline-offset: 3px;
}

strong {
  font-weight: 700;
}

.no-break {
  white-space: nowrap;
}

.yoku-special-page {
  padding: var(--page-gutter);
}

.yoku-paper {
  width: 100%;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 0;
  min-height: auto;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 92px;
  height: auto;
  transform: rotate(90deg) translateY(-100%);
  transform-origin: top left;
}

.hero-vertical {
  position: absolute;
  top: 22px;
  right: 28px;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .08em;
}

.hero-title-block {
  position: absolute;
  inset: 96px 0 auto;
  text-align: center;
}

.hero-title-block h1 {
  margin: 0;
  font-size: clamp(86px, 13vw, 112px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: .01em;
}

.hero-title-block p {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5em;
  padding-left: .5em;
}

.stamp {
  position: absolute;
  top: 108px;
  right: 23px;
  margin: 0;
  color: var(--stamp);
  border: 2px solid var(--stamp);
  border-radius: 6px;
  padding: 2px 12px 3px;
  transform: rotate(-10deg);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .08em;
  z-index: 2;
}

.lost-property {
  position: absolute;
  left: 19px;
  bottom: 13px;
  margin: 0;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
}

.paper-nav {
  --reservation-width: 84px;
  --reservation-offset: 32px;
  --nav-logo-width: 150px;

  display: grid;
  grid-template-columns: var(--nav-logo-width) repeat(4, minmax(0, 1fr));
  align-items: stretch;
  height: 39px;
  min-height: 39px;
  padding-right: calc(var(--reservation-width) + var(--reservation-offset));
  border-bottom: 0;

  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);

  overflow: visible;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.paper-nav::before,
.paper-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 30;
}

.paper-nav::before {
  left: 0;
  right: calc(var(--reservation-width) + var(--reservation-offset));
}

.paper-nav::after {
  left: calc(100% - var(--reservation-offset));
  right: 0;
  width: auto;
}

.paper-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  padding: 0 8px;
  text-decoration: none;
  min-width: 0;
  border-right: 0;
  white-space: nowrap;
}

.paper-nav a:not(.reservation):hover {
  background: rgba(255, 255, 255, .28);
}

.paper-nav .nav-logo {
  justify-content: flex-start;
  padding-left: var(--section-gutter);
}

.paper-nav .nav-logo img {
  width: 54px;
  height: auto;
  display: block;
}

.paper-nav .reservation {
  position: absolute;
  top: 0;
  right: var(--reservation-offset);
  width: var(--reservation-width);
  height: 76px;
  min-width: var(--reservation-width);
  min-height: 76px;
  padding: 14px 9px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  z-index: 20;
  transform: none;
  margin: 0;
  touch-action: manipulation;
}

.paper-nav .reservation:hover,
.paper-nav .reservation:focus-visible {
  background: rgba(255, 255, 255, .28);
}

.paper-nav .reservation span {
  font-size: 16px;
  line-height: 1.1;
}

.paper-nav small {
  font-size: 8.5px;
  letter-spacing: 0;
}

#exhibition,
#overview,
#statement,
#overall-statement {
  scroll-margin-top: 82px;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 36px 39px;
}

.exhibition-section {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 42px;
  padding: 35px 39px 35px 0;
}

.month-tabs {
  list-style: none;
  padding: 0;
  margin: 49px 0 0 -1px;
  border: 1px solid var(--line);
  align-self: start;
  display: grid;
  width: 40px;
}

.month-tabs li {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1;
}

.month-tabs li:last-child {
  border-bottom: 0;
}

.month-tab {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;

  display: grid;
  place-items: center;
  width: 100%;
  min-height: 50px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 0;
}

.month-tab.is-current,
.month-tab[aria-selected="true"] {
  color: rgba(21, 18, 15, .48);
}

.month-tab:not(.is-current) {
  color: var(--ink);
}

.exhibition-panel[hidden] {
  display: none;
}

.exhibition-panel.is-active {
  display: block;
}

.exhibition-coming-soon {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

h2 {
  margin: 0 0 19px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.25;
}

.exhibition-name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .02em;
}

.artist-name {
  margin: 3px 0 18px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .18em;
}

.info-list {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.72;
}

.info-list div {
  display: grid;
  grid-template-columns: 4.4em 1fr;
  gap: .45em;
  margin-bottom: 8px;
}

.info-list dt::after {
  content: "：";
}

.info-list dt {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.info-list dd {
  margin: 0;
  font-weight: 700;
}

.info-list span {
  color: var(--ink);
  font-size: 12px;
}

.info-list div:first-child dd {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.info-list div:nth-child(2) {
  font-size: 11px;
  line-height: 1.65;
}

.info-list div:nth-child(3) dd {
  font-size: 14px;
  font-weight: 900;
}

.info-list div:nth-child(3) span {
  font-size: 11px;
  font-weight: 600;
}

.statement-excerpt {
  position: relative;
  margin: 25px 0 17px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  max-height: 168px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
}

.statement-excerpt::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58px;
  background: linear-gradient(rgba(241, 234, 219, 0), var(--paper));
  pointer-events: none;
}

.statement-excerpt p:not(.statement-title) {
  margin: 0;
}

.statement-excerpt .statement-title {
  margin: 0 0 1.2em;
  text-align: left;
  font-weight: 900;
  line-height: 1.8;
}

.paper-button {
  display: table;
  margin: 18px auto 0;
  padding: 5px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
  cursor: pointer;
}

.paper-button:hover {
  background: rgba(255, 255, 255, .33);
}

.statement-details {
  margin-top: 10px;
}

.statement-details summary {
  list-style: none;
}

.statement-details summary::-webkit-details-marker {
  display: none;
}

.statement-details[open] summary {
  background: rgba(255, 255, 255, .34);
}

.statement-details .summary-label-close {
  display: none;
}

.statement-details[open] .summary-label-open {
  display: none;
}

.statement-details[open] .summary-label-close {
  display: inline;
}

.statement-full {
  margin-top: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(59, 52, 43, .45);
  font-size: 13px;
  font-weight: 600;
  line-height: 2.05;
  text-align: left;
}

.statement-full p {
  margin: 0 0 1.45em;
}

.statement-full p:last-child {
  margin-bottom: 0;
}

.statement-continuation {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.statement-continuation>summary {
  order: 1;
}

.statement-continuation>.statement-full {
  order: 2;
  margin-top: 0;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}

.statement-continuation>.statement-full p {
  margin: 0 0 1.45em;
}

.statement-continuation>.statement-full p:last-child {
  margin-bottom: 0;
}

.statement-continuation:not([open]) .summary-label-open {
  display: inline;
}

.statement-continuation:not([open]) .summary-label-close {
  display: none;
}

.statement-continuation[open] .summary-label-open {
  display: none;
}

.statement-continuation[open] .summary-label-close {
  display: inline;
}

.statement-flow:has(.statement-continuation[open]) .statement-excerpt {
  max-height: none;
  overflow: visible;
  margin-bottom: 0;
}

.statement-flow:has(.statement-continuation[open]) .statement-excerpt::after {
  content: none;
}

.statement-flow:has(.statement-continuation[open]) .statement-continuation {
  margin-top: 1.45em;
}

.statement-flow:has(.statement-continuation[open]) .statement-continuation>.statement-full {
  order: 1;
}

.statement-flow:has(.statement-continuation[open]) .statement-continuation>summary {
  order: 2;
  margin-top: 1.2em;
}

.overview-details[open] .statement-full {
  animation: statementSlideDown .24s ease-out;
}

@keyframes statementSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview-section {
  text-align: center;
  padding-top: 39px;
  padding-bottom: 37px;
}

.overview-section h2 {
  font-size: 31px;
  font-weight: 900;
  letter-spacing: .14em;
}

.overview-section>p {
  margin: 0 auto 20px;
  max-width: 500px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.overview-section>.overview-lead {
  max-width: min(100%, 760px);
}

.overview-details .statement-full {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.overview-details .statement-full p {
  max-width: none;
  margin: 0 0 1.45em;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
}

.overview-details .statement-full p:last-child {
  margin-bottom: 0;
}

.project-list {
  padding: var(--section-gutter) 0 var(--section-gutter) var(--section-gutter);
}

.project-item {
  width: min(100%, var(--project-info-width));
  margin-left: 0;
  margin-right: auto;
  padding: 28px 0;
}

.project-item+.project-item {
  border-top: 1px solid var(--line);
}

.project-list .project-item:first-of-type {
  padding-top: 0;
}

.project-item:last-child {
  padding-bottom: 0;
}

h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.45;
}

h3 span {
  color: var(--ink);
}

.project-item p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.yoku-back-to-top {
  position: fixed;
  right: calc(var(--page-gutter) + 18px);
  bottom: 22px;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: .82;
  cursor: pointer;
  z-index: 1000;
  transition: opacity .2s ease, transform .2s ease;
}

.yoku-back-to-top:hover,
.yoku-back-to-top:focus-visible {
  opacity: .92;
  transform: translateY(-3px);
}

.yoku-back-to-top:active {
  opacity: .84;
  transform: translateY(-1px);
}

.yoku-back-to-top img {
  width: 100%;
  height: 100%;
  display: block;
}

.paper-footer {
  border-top: 0;
  padding: 9px 10px 10px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-vertical,
.stamp,
.paper-nav,
.paper-footer {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.simple-card {
  width: min(100%, 560px);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 42px 28px;
  text-align: center;
}

.simple-card h1 {
  margin: 0 0 14px;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 700;
}

.simple-eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
}

.statement-full .statement-title,
.overview-details .statement-full .statement-title {
  text-align: center;
  font-weight: 700;
}

.statement-full .statement-signature,
.overview-details .statement-full .statement-signature {
  text-align: right;
  margin-top: 2em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .yoku-back-to-top {
    transition: none;
  }

  .overview-details[open] .statement-full {
    animation: none;
  }
}

@media (min-width: 960px) {
  .overview-lead .overview-line {
    white-space: nowrap;
  }
}

@media (min-width: 641px) {
  .section {
    padding: var(--section-gutter) var(--content-gutter);
  }

  .exhibition-section {
    grid-template-columns: var(--month-tabs-width) minmax(0, 1fr);
    gap: var(--section-gutter);
    padding: var(--section-gutter) var(--content-gutter) var(--section-gutter) 0;
    align-items: start;
  }

  .month-tabs {
    width: var(--month-tabs-width);
    margin: 0 0 0 -1px;
    position: sticky;
    top: 63px;
    z-index: 40;
    align-self: start;
    background: var(--paper);
  }

  .overview-section {
    padding: var(--section-gutter) var(--content-gutter);
  }

  .project-list {
    padding: var(--section-gutter) var(--content-gutter);
  }

  .project-item {
    width: min(100%, var(--project-info-width));
    margin-left: 0;
    margin-right: auto;
  }

  .project-list .project-item:first-of-type {
    padding-top: 0;
  }

  .project-item:last-child {
    padding-bottom: 0;
  }

  h2 {
    font-size: 34px;
    font-weight: 900;
  }

  .exhibition-name {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.6;
  }

  .artist-name {
    font-size: 20px;
    font-weight: 900;
  }

  .info-list {
    font-size: 14px;
    line-height: 1.75;
  }

  .info-list div:first-child dd {
    font-size: 18px;
  }

  .info-list div:nth-child(2) {
    font-size: 12px;
  }

  .info-list div:nth-child(3) dd {
    font-size: 16px;
  }

  .statement-excerpt {
    font-size: 14px;
    line-height: 2;
  }

  .statement-continuation>.statement-full {
    font-size: 14px;
    line-height: 2.05;
  }

  .overview-section>p {
    font-size: 16px;
    line-height: 1.95;
  }

  .project-item p {
    font-size: 14px;
    line-height: 1.85;
  }
}

@media (max-width: 640px) {
  .project-item+.project-item {
    border-top: 1px solid var(--line);
  }

  .no-break {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .paper-nav {
    --reservation-width: 66px;
    --reservation-offset: 10px;

    grid-template-columns: .78fr .88fr 1fr .38fr 1.34fr;
    height: 38px;
    min-height: 38px;
    padding-right: calc(var(--reservation-width) + var(--reservation-offset));

    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);

    overflow: visible;
    font-size: clamp(8.5px, 2.25vw, 10px);
    letter-spacing: .02em;
  }

  #exhibition,
  #overview,
  #statement,
  #overall-statement {
    scroll-margin-top: 64px;
  }

  .paper-nav a {
    height: 38px;
    padding: 0 2px;
    overflow: hidden;
    text-overflow: clip;
  }

  .paper-nav .nav-logo {
    padding-left: 6px;
    justify-content: center;
  }

  .paper-nav .nav-logo img {
    width: 42px;
  }

  .paper-nav .reservation {
    top: 0;
    right: var(--reservation-offset);
    width: var(--reservation-width);
    height: 58px;
    min-width: var(--reservation-width);
    min-height: 58px;
    padding: 9px 5px 7px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: none;
    margin: 0;
    background: var(--paper);
  }

  .paper-nav .reservation:hover,
  .paper-nav .reservation:focus-visible {
    background: var(--paper);
  }

  .paper-nav .reservation span {
    font-size: 12px;
    line-height: 1.1;
  }

  .paper-nav small {
    font-size: 6.8px;
  }

  .section {
    padding: 24px;
  }

  .exhibition-section {
    display: block;
    padding: 24px;
  }

  .month-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-template-columns: none;
    width: 100%;
    margin: 0 0 24px;
  }

  .month-tabs li {
    min-height: 36px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    font-size: 10px;
  }

  .month-tabs li:last-child {
    border-right: 0;
  }

  .month-tab {
    min-height: 36px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 0;
  }

  h2 {
    font-size: 23px;
  }

  .exhibition-name {
    font-size: 17px;
  }

  .info-list div {
    display: block;
  }

  .info-list dt {
    margin-bottom: 2px;
  }

  .overview-section p br {
    display: none;
  }

  .overview-section>.overview-lead {
    max-width: 100%;
  }

  .overview-lead .overview-line {
    white-space: normal;
  }

  .project-list {
    padding: 24px;
  }

  .project-item {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .project-list .project-item:first-of-type {
    padding-top: 0;
  }

  .project-item:last-child {
    padding-bottom: 0;
  }

  .statement-excerpt {
    font-size: 13px;
  }

  .statement-continuation>.statement-full {
    font-size: 13px;
  }

  .project-item p {
    font-size: 13px;
  }

  .yoku-back-to-top {
    right: 12px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    opacity: .78;
  }
}

/* ===== Final font mapping based on design comments ===== */

:root {
  --font-zen-gothic: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-shippori-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
}

/* Zen Kaku Gothic New Medium */
/* 1. 上部メニューバー：展覧会、企画概要、X、INSTAGRAM */
/* 2. 左メニューバー：七月〜十一月 */
/* 3. 個展ステートメント本文：私は毎朝〜展開後の終わりまで */
/* 4. 続きを読む、閉じる */
/* 5. プロジェクトステートメントを読む、プロジェクトステートメントを閉じる */
/* 5.5 プロジェクトステートメント本文。ただし「慾と痕」タイトルは除外 */
/* 6. 連続個展企画「慾」本文：会期〜三上悠里まで */
/* 7. 総括グループ展企画「痕」本文：会期〜三上悠里まで */
/* 8. Coming soon... */
.paper-nav a:not(.nav-logo):not(.reservation),
.month-tab,
.statement-excerpt p:not(.statement-title),
.statement-continuation>.statement-full,
.paper-button,
.overview-details .statement-full p:not(.statement-title),
.project-item p,
.project-item p strong {
  font-family: var(--font-zen-gothic);
  font-weight: 500;
}

/* Zen Kaku Gothic New Bold */
/* 1. 予約 / Reservation */
/* 2. 展覧会 */
/* 3. 栗原 蓮 */
/* 4. 会期： */
/* 5. 開廊日：日付部分も含む */
/* 6. 会場： */
/* 7. 個展ステートメント */
/* 8. 企画概要 */
/* 8.5 プロジェクトステートメントタイトル：慾と痕 */
/* 9〜11. プロジェクト一覧の各見出し */
.paper-nav .reservation,
.paper-nav .reservation span,
.paper-nav .reservation small,
#exhibition-title,
#overview-title,
.artist-name,
.info-list dt,
.info-list dt::after,
.info-list div:nth-child(2),
.info-list div:nth-child(2) dt,
.info-list div:nth-child(2) dd,
.statement-excerpt .statement-title,
.overview-details .statement-full .statement-title,
.project-item h3 {
  font-family: var(--font-zen-gothic);
  font-weight: 700;
}

/* Shippori Mincho Medium */
/* 1. Mew現代美術展プロジェクト〜三段階で構成されます */
.overview-section>p {
  font-family: var(--font-shippori-mincho);
  font-weight: 500;
}

/* Shippori Mincho ExtraBold */
/* 1. 一枚絵化予定のトップ部分：現状HTMLで存在する文字要素 */
/* 3. 流しそうめんとオオオニバス――救済と抹殺の贈与 */
/* 4. 2026年〜20:00 */
/* 5. 遺失物係 */
/* 6. ※ご予約いただいた方にのみ住所をご案内します */
/* 7. © 2025–2026 Artist Collective Mew */
.hero .hero-vertical,
.hero .stamp,
.hero .hero-title-block h1,
.hero .hero-title-block p,
.hero .lost-property,
.exhibition-name,
.info-list div:first-child dd,
.info-list div:nth-child(3) dd,
.info-list div:nth-child(3) span,
.paper-footer {
  font-family: var(--font-shippori-mincho);
  font-weight: 800;
}

/* ===== Desktop typography scale adjustment ===== */

@media (min-width: 641px) {
  .paper-nav {
    font-size: 12px;
  }

  h2,
  .overview-section h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .exhibition-name {
    font-size: 28px;
    line-height: 1.5;
  }

  .artist-name {
    font-size: 24px;
    line-height: 1.5;
  }

  .info-list {
    font-size: 16px;
    line-height: 1.8;
  }

  .info-list div:first-child dd {
    font-size: 22px;
    line-height: 1.5;
  }

  .info-list div:nth-child(2) {
    font-size: 14px;
    line-height: 1.75;
  }

  .info-list div:nth-child(3) dd {
    font-size: 20px;
    line-height: 1.5;
  }

  .info-list div:nth-child(3) span {
    font-size: 14px;
  }

  .statement-excerpt {
    font-size: 16px;
    line-height: 2.05;
    max-height: 205px;
  }

  .statement-continuation>.statement-full {
    font-size: 16px;
    line-height: 2.08;
  }

  .overview-section>p {
    font-size: 20px;
    line-height: 2;
  }

  .overview-section>.overview-lead {
    max-width: min(100%, 980px);
  }

  .overview-details .statement-full {
    font-size: 16px;
    line-height: 2.08;
  }

  h3,
  .project-item h3 {
    font-size: 26px;
    line-height: 1.45;
  }

  .project-item p {
    font-size: 16px;
    line-height: 1.95;
  }

  .paper-button {
    font-size: 13px;
    padding: 7px 24px;
  }
}

/* ===== Project separators aligned to content gutter ===== */

@media (min-width: 641px) {
  .project-item {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .project-item+.project-item {
    border-top: 1px solid var(--line);
  }

  .project-item h3,
  .project-item p {
    width: min(100%, var(--project-info-width));
    margin-left: 0;
    margin-right: auto;
  }
}

/* ===== Exhibition info column alignment ===== */

@media (min-width: 641px) {
  .info-list {
    --info-label-width: 66px;
    --info-label-gap: 8px;
  }

  .info-list div {
    grid-template-columns: var(--info-label-width) minmax(0, 1fr);
    column-gap: var(--info-label-gap);
  }

  .info-list dt,
  .info-list dd {
    min-width: 0;
  }

  .info-list dd span {
    display: inline-block;
  }
}

.paper-footer {
  font-family: var(--font-zen-gothic);
  font-weight: 500;
}

/* ===== Project document title line control ===== */

@media (min-width: 641px) {
  #project-doc-title {
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 960px) {
  #project-doc-title .project-title-text {
    white-space: nowrap;
  }
}