:root {
  --kye-ink: #171512;
  --kye-paper: #faf9f6;
  --kye-white: #fff;
  --kye-line: #d8d3ca;
  --kye-soft-line: #e9e5de;
  --kye-muted: #726d65;
  --kye-accent: #6f1721;
  --kye-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", serif;
  --kye-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

html { scroll-behavior: smooth; }
body.kye-editorial-body {
  margin: 0;
  overflow-x: hidden;
  background: var(--kye-paper);
  color: var(--kye-ink);
}
body.ky-modal-open { overflow: hidden; }
.kye-site,
.kye-site button,
.kye-site input { font-family: var(--kye-sans); }
.kye-site {
  min-height: 100vh;
  background: var(--kye-paper);
  color: var(--kye-ink);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
.kye-site *,
.kye-site *::before,
.kye-site *::after { box-sizing: border-box; }
.kye-site a { color: inherit; text-decoration: none; }
.kye-site img { display: block; max-width: 100%; }
.kye-site button { color: inherit; }

.kye-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--kye-line);
}
.kye-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 64px));
  min-height: 34px;
  margin: 0 auto;
  border-bottom: 1px solid var(--kye-soft-line);
  color: var(--kye-muted);
  font-size: 9px;
  letter-spacing: .13em;
}
.kye-header-top p { margin: 0; }
.kye-header-top div { display: flex; align-items: center; gap: 24px; }
.kye-header-top button { padding: 0; border: 0; background: transparent; font-size: inherit; letter-spacing: inherit; cursor: pointer; }
.kye-header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  min-height: 84px;
  margin: 0 auto;
}
.kye-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 2;
}
.kye-wordmark span {
  font-family: var(--kye-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.12;
}
.kye-wordmark small {
  margin-top: 4px;
  font-family: "Times New Roman", serif;
  font-size: 7px;
  letter-spacing: .3em;
}
.kye-journal-link {
  justify-self: end;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .2em;
}
.kye-menu-button { display: none; }
.kye-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: 42px;
  padding: 0 24px;
  border-top: 1px solid var(--kye-soft-line);
  font-size: 10px;
  letter-spacing: .09em;
}
.kye-nav a { display: flex; align-items: center; position: relative; white-space: nowrap; }
.kye-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--kye-accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.kye-nav a:hover::after { transform: scaleX(1); }

.kye-main { display: block; }
.kye-article,
.kye-archive-main { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
.kye-breadcrumbs {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 62px;
  overflow: hidden;
  color: var(--kye-muted);
  font-family: "Times New Roman", var(--kye-serif);
  font-size: 9px;
  letter-spacing: .13em;
  white-space: nowrap;
}
.kye-breadcrumbs a:hover { color: var(--kye-accent); }
.kye-article-hero {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #d8d3ca;
  aspect-ratio: 16 / 7.2;
}
.kye-article-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.kye-article-header {
  display: grid;
  grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(48px, 6vw, 82px) 0 clamp(50px, 7vw, 92px);
}
.kye-article-meta {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 9px;
  color: var(--kye-muted);
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .13em;
}
.kye-article-meta a { color: var(--kye-accent); }
.kye-article-meta a::after { content: "|"; margin-left: 14px; color: var(--kye-line); }
.kye-kicker {
  margin: 0 0 15px;
  color: var(--kye-accent);
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .23em;
  line-height: 1.4;
}
.kye-article-title h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--kye-serif);
  font-size: clamp(34px, 4.25vw, 60px);
  font-weight: 500;
  letter-spacing: .055em;
  line-height: 1.55;
}
.kye-article-deck {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--kye-muted);
  font-family: var(--kye-serif);
  font-size: 15px;
  letter-spacing: .045em;
  line-height: 2.15;
}
.kye-article-rule { border-top: 1px solid var(--kye-ink); }
.kye-article-layout {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(54px, 7vw, 96px) 0 clamp(90px, 11vw, 150px);
}
.kye-article-rail {
  align-self: start;
  position: sticky;
  top: 30px;
  color: var(--kye-muted);
  font-size: 11px;
  letter-spacing: .05em;
}
.kye-article-rail > div { padding: 0 0 22px; border-bottom: 1px solid var(--kye-line); }
.kye-article-rail > div + div { padding-top: 22px; }
.kye-article-rail p { margin: 0; }
.kye-rail-label { margin-bottom: 8px !important; color: var(--kye-accent); font-family: "Times New Roman", serif; font-size: 9px; letter-spacing: .2em; }
.kye-share { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.kye-share .kye-rail-label { width: 100%; }
.kye-share a {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid var(--kye-line);
  border-radius: 50%;
  color: var(--kye-ink);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  place-items: center;
}
.kye-share a:last-child { width: 48px; border-radius: 20px; }
.kye-entry-content {
  width: min(780px, 100%);
  color: #282521;
  font-family: var(--kye-serif);
  font-size: clamp(16px, 1.42vw, 18px);
  letter-spacing: .035em;
  line-height: 2.15;
}
.kye-entry-content > *:first-child { margin-top: 0; }
.kye-entry-content p { margin: 0 0 2em; }
.kye-entry-content strong { color: var(--kye-ink); font-weight: 600; }
.kye-entry-content a { color: var(--kye-accent); border-bottom: 1px solid rgba(111, 23, 33, .34); }
.kye-entry-content h2 {
  margin: 3.2em 0 1.25em;
  padding: 0 0 .68em;
  border-bottom: 1px solid var(--kye-ink);
  font-size: clamp(26px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: .07em;
  line-height: 1.65;
}
.kye-entry-content h3 {
  position: relative;
  margin: 2.7em 0 1.1em;
  padding-left: 24px;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.7;
}
.kye-entry-content h3::before { content: ""; position: absolute; top: .2em; bottom: .2em; left: 0; width: 1px; background: var(--kye-accent); }
.kye-entry-content h4 { margin: 2.4em 0 1em; font-size: 19px; letter-spacing: .05em; }
.kye-entry-content ul,
.kye-entry-content ol { margin: 0 0 2em; padding-left: 1.5em; }
.kye-entry-content li { margin-bottom: .7em; }
.kye-entry-content blockquote {
  margin: 3em 0;
  padding: 35px 42px;
  border: 0;
  border-top: 1px solid var(--kye-accent);
  border-bottom: 1px solid var(--kye-accent);
  background: transparent;
  color: var(--kye-accent);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.9;
}
.kye-entry-content figure,
.kye-entry-content .wp-block-image { margin: 3.2em 0; }
.kye-entry-content figure img,
.kye-entry-content .wp-block-image img { width: 100%; height: auto; }
.kye-entry-content figcaption { margin-top: 11px; color: var(--kye-muted); font-family: var(--kye-sans); font-size: 10px; letter-spacing: .05em; line-height: 1.7; }
.kye-entry-content table { width: 100%; margin: 2.5em 0; border-collapse: collapse; font-family: var(--kye-sans); font-size: 13px; line-height: 1.8; }
.kye-entry-content th,
.kye-entry-content td { padding: 14px 12px; border: 1px solid var(--kye-line); text-align: left; }
.kye-entry-content th { background: #efede8; }
.kye-page-links { margin-top: 40px; }

.kye-editor-note {
  display: grid;
  grid-template-columns: .55fr .8fr 1.4fr;
  gap: clamp(28px, 5vw, 70px);
  margin: 0 0 clamp(80px, 10vw, 140px);
  padding: clamp(38px, 5vw, 65px);
  background: #eeebe4;
}
.kye-editor-note h2 { margin: 0; font-family: var(--kye-serif); font-size: clamp(25px, 3vw, 38px); font-weight: 500; letter-spacing: .07em; line-height: 1.6; }
.kye-editor-note > p:last-child { margin: 0; color: var(--kye-muted); font-family: var(--kye-serif); font-size: 13px; letter-spacing: .04em; line-height: 2.1; }
.kye-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: clamp(90px, 11vw, 150px);
  background: var(--kye-line);
  border-top: 1px solid var(--kye-line);
  border-bottom: 1px solid var(--kye-line);
}
.kye-post-navigation > div { min-height: 130px; padding: 28px 34px; background: var(--kye-paper); }
.kye-post-navigation > div:last-child { text-align: right; }
.kye-post-navigation span { display: block; margin-bottom: 15px; color: var(--kye-accent); font-family: "Times New Roman", serif; font-size: 9px; letter-spacing: .2em; }
.kye-post-navigation a { font-family: var(--kye-serif); font-size: 15px; letter-spacing: .04em; line-height: 1.8; }

.kye-related {
  margin-right: calc((100vw - min(1280px, calc(100vw - 64px))) / -2);
  margin-left: calc((100vw - min(1280px, calc(100vw - 64px))) / -2);
  padding: clamp(80px, 10vw, 130px) max(32px, calc((100vw - 1280px) / 2));
  background: #efede8;
}
.kye-section-heading { margin-bottom: 46px; }
.kye-section-heading h2 { margin: 0; font-family: var(--kye-serif); font-size: clamp(30px, 3.7vw, 48px); font-weight: 500; letter-spacing: .09em; }
.kye-section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--kye-ink); }
.kye-section-heading-row > p { margin: 0; color: var(--kye-muted); font-family: "Times New Roman", serif; font-size: 10px; letter-spacing: .14em; }
.kye-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3.1vw, 44px); }
.kye-card a { display: block; }
.kye-card-image { aspect-ratio: 16 / 10; margin-bottom: 20px; overflow: hidden; background: #d7d2c9; }
.kye-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 650ms cubic-bezier(.2, .72, 0, 1); }
.kye-card:hover .kye-card-image img { transform: scale(1.025); }
.kye-card-meta { display: flex; justify-content: space-between; gap: 14px; margin: 0 0 15px; color: var(--kye-muted); font-family: "Times New Roman", serif; font-size: 9px; letter-spacing: .14em; }
.kye-card-meta span { color: var(--kye-accent); }
.kye-card h3 { margin: 0 0 12px; font-family: var(--kye-serif); font-size: clamp(19px, 2vw, 25px); font-weight: 500; letter-spacing: .045em; line-height: 1.7; }
.kye-card > a > p:not(.kye-card-meta) { margin: 0 0 18px; color: var(--kye-muted); font-family: var(--kye-serif); font-size: 12px; line-height: 1.9; }
.kye-read-more { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--kye-ink); font-family: "Times New Roman", serif; font-size: 9px; letter-spacing: .2em; }

.kye-archive-main { padding-bottom: clamp(90px, 11vw, 150px); }
.kye-archive-header {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  padding: clamp(70px, 9vw, 125px) 0 clamp(55px, 7vw, 90px);
}
.kye-archive-header h1 { margin: 0; font-family: var(--kye-serif); font-size: clamp(40px, 5.8vw, 76px); font-weight: 500; letter-spacing: .08em; line-height: 1.35; }
.kye-archive-header > p { margin: 0; color: var(--kye-muted); font-family: var(--kye-serif); font-size: 14px; letter-spacing: .05em; line-height: 2.05; }
.kye-lead-story { display: grid; grid-template-columns: 1.52fr .78fr; min-height: 550px; margin-bottom: clamp(90px, 11vw, 150px); background: #e9e5dd; }
.kye-lead-image { display: block; min-height: 520px; overflow: hidden; }
.kye-lead-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 850ms cubic-bezier(.2, .72, 0, 1); }
.kye-lead-image:hover img { transform: scale(1.018); }
.kye-lead-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 72px); }
.kye-lead-copy h2 { margin: 0 0 23px; font-family: var(--kye-serif); font-size: clamp(28px, 3.3vw, 47px); font-weight: 500; letter-spacing: .055em; line-height: 1.65; }
.kye-lead-copy > p:not(.kye-card-meta) { margin: 0 0 28px; color: var(--kye-muted); font-family: var(--kye-serif); font-size: 13px; line-height: 2; }
.kye-archive-list { margin-bottom: 70px; }
.kye-pagination { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--kye-line); }
.kye-pagination .nav-links { display: flex; justify-content: center; gap: 10px; align-items: center; }
.kye-pagination .page-numbers { display: grid; min-width: 38px; height: 38px; padding: 0 8px; border: 1px solid var(--kye-line); font-family: "Times New Roman", serif; font-size: 10px; place-items: center; }
.kye-pagination .current { border-color: var(--kye-ink); background: var(--kye-ink); color: #fff; }
.kye-pagination .prev,
.kye-pagination .next { width: auto; padding: 0 16px; letter-spacing: .12em; }
.kye-empty { min-height: 420px; padding: 80px 0; border-top: 1px solid var(--kye-ink); }
.kye-empty h2 { margin: 0 0 30px; font-family: var(--kye-serif); font-size: clamp(27px, 3.5vw, 44px); font-weight: 500; }

.kye-footer { padding: 72px max(32px, calc((100vw - 1280px) / 2)) 25px; background: #11110f; color: #fff; }
.kye-footer-lead { display: flex; justify-content: space-between; gap: 50px; align-items: flex-end; padding-bottom: 48px; border-bottom: 1px solid #3b3935; }
.kye-footer-lead .kye-kicker { color: #b9a58e; }
.kye-footer-title { margin: 0; font-family: var(--kye-serif); font-size: clamp(31px, 4vw, 52px); letter-spacing: .14em; }
.kye-footer-lead > p { margin: 0; color: #aaa59d; font-family: var(--kye-serif); font-size: 12px; letter-spacing: .06em; line-height: 2; text-align: right; }
.kye-footer-links { display: flex; flex-wrap: wrap; gap: 28px 46px; padding: 42px 0 62px; }
.kye-footer-links a { color: #c9c5bd; font-size: 10px; letter-spacing: .1em; }
.kye-footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #3b3935; color: #807c75; font-family: "Times New Roman", serif; font-size: 9px; letter-spacing: .13em; }

.kye-search[hidden] { display: none; }
.kye-search { position: fixed; z-index: 100000; inset: 0; overflow-y: auto; background: rgba(250, 249, 246, .985); }
.kye-search-close { position: fixed; top: 28px; right: 34px; padding: 0; border: 0; background: transparent; font-family: "Times New Roman", serif; font-size: 33px; font-weight: 200; cursor: pointer; }
.kye-search-inner { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: clamp(100px, 16vh, 170px) 0 90px; }
.kye-search-inner label { display: block; margin-bottom: 26px; font-family: var(--kye-serif); font-size: clamp(30px, 5vw, 58px); letter-spacing: .08em; }
.kye-search-inner form { display: flex; gap: 14px; align-items: stretch; }
.kye-search-inner input { min-width: 0; flex: 1; padding: 17px 0; border: 0; border-bottom: 1px solid var(--kye-ink); outline: 0; background: transparent; font-size: 17px; }
.kye-search-inner form button { padding: 0 20px; border: 1px solid var(--kye-ink); background: transparent; font-size: 11px; letter-spacing: .1em; cursor: pointer; }

.kye-site a:focus-visible,
.kye-site button:focus-visible,
.kye-site input:focus-visible { outline: 2px solid #a94750; outline-offset: 4px; }

@media (max-width: 820px) {
  .kye-header-top { width: calc(100% - 36px); }
  .kye-header-top > p,
  .kye-header-top a { display: none; }
  .kye-header-top { justify-content: flex-end; }
  .kye-header-main { width: calc(100% - 36px); min-height: 76px; }
  .kye-wordmark span { font-size: 25px; }
  .kye-journal-link { display: none; }
  .kye-menu-button {
    display: flex;
    width: 27px;
    height: 21px;
    padding: 3px 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .kye-menu-button span { display: block; width: 100%; height: 1px; background: var(--kye-ink); }
  .kye-nav { display: none; gap: 0; min-height: 0; padding: 6px 22px 25px; }
  .kye-nav.is-open { display: flex; flex-direction: column; }
  .kye-nav a { padding: 13px 0; border-bottom: 1px solid var(--kye-soft-line); font-family: var(--kye-serif); font-size: 13px; }
  .kye-article,
  .kye-archive-main { width: calc(100% - 36px); }
  .kye-breadcrumbs { min-height: 49px; }
  .kye-article-hero { aspect-ratio: 4 / 3; }
  .kye-article-hero img { object-position: 68% center; }
  .kye-article-header { grid-template-columns: 1fr; gap: 24px; }
  .kye-article-meta { padding-top: 0; }
  .kye-article-title h1 { font-size: clamp(31px, 8.7vw, 43px); line-height: 1.55; }
  .kye-article-layout { grid-template-columns: 1fr; gap: 40px; }
  .kye-article-rail { display: flex; position: static; justify-content: space-between; gap: 26px; order: 2; }
  .kye-article-rail > div { flex: 1; padding: 20px 0 0; border-top: 1px solid var(--kye-line); border-bottom: 0; }
  .kye-article-rail > div + div { padding-top: 20px; }
  .kye-entry-content { order: 1; font-size: 16px; line-height: 2.05; }
  .kye-entry-content h2 { font-size: 28px; }
  .kye-editor-note { grid-template-columns: 1fr; gap: 20px; }
  .kye-post-navigation { grid-template-columns: 1fr; }
  .kye-post-navigation > div:last-child { text-align: left; }
  .kye-related { margin-right: -18px; margin-left: -18px; padding-right: 18px; padding-left: 18px; }
  .kye-card-grid { grid-template-columns: 1fr; gap: 60px; }
  .kye-archive-header { grid-template-columns: 1fr; gap: 28px; }
  .kye-lead-story { grid-template-columns: 1fr; min-height: 0; }
  .kye-lead-image { min-height: 0; aspect-ratio: 4 / 3; }
  .kye-lead-image img { object-position: 67% center; }
  .kye-lead-copy { padding: 36px 25px 42px; }
  .kye-footer { padding-right: 22px; padding-left: 22px; }
  .kye-footer-lead { align-items: flex-start; flex-direction: column; gap: 27px; }
  .kye-footer-lead > p { text-align: left; }
  .kye-footer-links { flex-direction: column; gap: 17px; }
  .kye-footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 520px) {
  .kye-article-header { padding-top: 38px; }
  .kye-article-title h1 { font-size: 30px; }
  .kye-article-layout { padding-top: 46px; }
  .kye-entry-content blockquote { padding: 26px 18px; }
  .kye-editor-note { padding: 31px 23px; }
  .kye-section-heading-row { align-items: flex-start; flex-direction: column; }
  .kye-search-inner form { flex-direction: column; }
  .kye-search-inner form button { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kye-site * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
