/* ═══════════════════════════════════════════════════════════════
   kitanote — Design System CSS
   I案「静かな強さ」ベース
   Version: 1.0.0
═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Noto+Serif+JP:wght@200;300;400&family=Noto+Sans+JP:wght@300;400&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design Tokens ─── */
:root {
  --bg:      #F2EDE4;       /* 紙のような温かいクリーム */
  --bg-lt:   #F8F4EE;       /* より明るいクリーム */
  --ink:     #1C1712;       /* 温かみのある黒 */
  --ink-mid: #6B5B4A;       /* ミドルトーン */
  --ink-lt:  rgba(28,23,18,0.28);
  --forest:  #2E3D2A;       /* 北海道の森の深緑 */
  --soil:    #5C3D1E;       /* 土の茶 */
  --white:   #FDFAF5;
  --serif:   'Noto Serif JP', serif;
  --sans:    'Noto Sans JP', sans-serif;
  --cg:      'Cormorant Garamond', serif;
  --r-sm:    12px;
  --r-md:    20px;
  --r-lg:    32px;
  --header-h: 64px;
  --side-pad: 52px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h); /* fixed header offset */
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }


/* ══════════════════════════════════════
   ISSUE BAR（F案より）
   イベント・速報・旬の情報ティッカー
══════════════════════════════════════ */
.issue-bar {
  background: var(--ink);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.issue-bar-label {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--bg);
  padding: 0 20px 0 var(--side-pad);
  height: 100%;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.issue-bar-track {
  overflow: hidden;
  flex: 1;
}

.issue-bar-inner {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.issue-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(242,237,228,0.55);
  letter-spacing: 0.06em;
}

.issue-bar-item a {
  color: rgba(242,237,228,0.55);
  transition: color 0.2s;
}
.issue-bar-item a:hover { color: rgba(242,237,228,0.9); }

.issue-bar-item::before {
  content: '◆';
  font-size: 5px;
  color: var(--forest);
  opacity: 0.8;
}

.issue-bar-date {
  font-family: var(--cg);
  font-style: italic;
  font-size: 10px;
  color: rgba(242,237,228,0.28);
  margin-left: 8px;
}


/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  height: var(--header-h);
  background: rgba(242,237,228,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,23,18,0.06);
  transition: background 0.3s;
}

.site-logo {
  font-family: var(--cg);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo-sub {
  font-family: var(--cg);
  font-style: italic;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--ink-lt);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a.current-menu-item::after { transform: scaleX(1); }
.site-nav a.current-menu-item { color: var(--ink); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(242,237,228,0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: var(--header-h);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--ink);
  position: relative;
}


/* ══════════════════════════════════════
   HERO（トップページ専用）
══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 58%;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px var(--side-pad);
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--forest);
}

/* 縦書き大見出し */
.hero-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.65;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 52px;
  display: inline-block;
  align-self: flex-start;
}

.hero-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  line-height: 2.4;
  color: var(--ink-mid);
  max-width: 300px;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cg);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mid);
  width: fit-content;
  border-bottom: 1px solid rgba(28,23,18,0.2);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta:hover { color: var(--ink); border-color: var(--ink); }
.hero-cta::after { content: '→'; font-style: normal; font-size: 11px; }

.hero-right {
  position: relative;
  min-height: 600px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 32px 0 32px 0;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  overflow: hidden;
}
.hero-photo-wrap img {
  object-position: center 20%;
  transition: transform 8s ease;
}
.hero-photo-wrap:hover img { transform: scale(1.03); }

/* フロート写真 */
.hero-float {
  position: absolute;
  bottom: 60px;
  left: -44px;
  width: 160px;
  height: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(28,23,18,0.14);
  border: 5px solid var(--bg);
  z-index: 3;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: var(--side-pad);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-lt);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-lt);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scroll-line 2s ease-in-out infinite;
  transform: translateX(-100%);
}
@keyframes scroll-line {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* ══════════════════════════════════════
   STATEMENT BAR
══════════════════════════════════════ */
.statement-bar {
  background: var(--forest);
  color: var(--bg);
  padding: 56px var(--side-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.statement-text {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(248,244,238,0.9);
}

.statement-en {
  font-family: var(--cg);
  font-style: italic;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(248,244,238,0.4);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}


/* ══════════════════════════════════════
   SECTION HEADER（汎用）
══════════════════════════════════════ */
.sec-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.sec-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1.4;
}
.sec-link {
  font-family: var(--cg);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-lt);
  border-bottom: 1px solid var(--ink-lt);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.sec-link:hover { color: var(--ink); border-color: var(--ink); }


/* ══════════════════════════════════════
   ARTICLE GRID（トップページ）
══════════════════════════════════════ */
.article-section {
  padding: 96px var(--side-pad);
  background: var(--bg-lt);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Base card */
.a-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.a-card:hover .a-card-img img { transform: scale(1.04); }

.a-card-img {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: #ddd;
}
.a-card-img img {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Large card */
.a-card--lg .a-card-img { height: 440px; }
.a-card--lg .a-card-title { font-size: 20px; line-height: 1.7; }

/* Small card */
.a-card--sm .a-card-img { height: 220px; }
.a-card--sm .a-card-title { font-size: 15px; line-height: 1.7; }

/* Right column: two small cards stacked */
.a-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.a-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
}
.a-card-cat::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--forest);
}

.a-card-title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}

.a-card-lead {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 2;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

.a-card-byline {
  font-family: var(--cg);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-lt);
  letter-spacing: 0.06em;
}


/* ══════════════════════════════════════
   FULL-BLEED FEATURE
══════════════════════════════════════ */
.feature-bleed {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.feature-bleed > img {
  position: absolute;
  inset: 0;
  object-position: center 35%;
  transition: transform 8s ease;
}
.feature-bleed:hover > img { transform: scale(1.04); }

.feature-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,23,18,0.72) 0%,
    rgba(28,23,18,0.32) 55%,
    transparent 80%
  );
}

.feature-bleed-body {
  position: absolute;
  top: 50%;
  left: var(--side-pad);
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
}

.feature-bleed-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.55);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-bleed-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(248,244,238,0.4);
}

.feature-bleed-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.feature-bleed-lead {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 2;
  color: rgba(248,244,238,0.6);
  margin-bottom: 32px;
}

.feature-bleed-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cg);
  font-style: italic;
  font-size: 14px;
  color: rgba(248,244,238,0.75);
  border-bottom: 1px solid rgba(248,244,238,0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.feature-bleed-link:hover { color: var(--white); border-color: rgba(248,244,238,0.7); }
.feature-bleed-link::after { content: '→'; font-style: normal; font-size: 11px; }


/* ══════════════════════════════════════
   INTERVIEW セクション
══════════════════════════════════════ */
.interview-section {
  padding: 96px var(--side-pad);
  background: var(--bg);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.interview-photo-wrap { position: relative; }

.interview-photo-main {
  height: 560px;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  overflow: hidden;
  margin-left: calc(var(--side-pad) * -1);
}

.interview-photo-sub {
  position: absolute;
  width: 150px;
  height: 190px;
  bottom: -28px;
  right: -24px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 8px 32px rgba(28,23,18,0.12);
}

.interview-series {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.interview-series::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--forest);
}

/* 縦書き名前 */
.interview-name {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-block;
  margin-bottom: 28px;
  line-height: 1.2;
}

.interview-role {
  font-family: var(--cg);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.interview-pull {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 2;
  color: var(--ink);
  padding-left: 18px;
  border-left: 2px solid var(--forest);
  margin-bottom: 24px;
}

.interview-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 2.2;
  color: var(--ink-mid);
  margin-bottom: 36px;
}


/* ══════════════════════════════════════
   LATEST（横スクロール）
══════════════════════════════════════ */
.latest-section {
  padding: 80px 0 80px var(--side-pad);
  background: var(--bg-lt);
  overflow: hidden;
}

.latest-header {
  padding-right: var(--side-pad);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.latest-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-right: var(--side-pad);
  padding-bottom: 8px;
  scrollbar-width: none;
}
.latest-rail::-webkit-scrollbar { display: none; }

.l-card {
  flex-shrink: 0;
  width: 260px;
  cursor: pointer;
}
.l-card:hover .l-card-img img { transform: scale(1.04); }

.l-card-img {
  height: 180px;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.l-card-img img { transition: transform 0.6s ease; }

.l-card-cat {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}

.l-card-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 8px;
}

.l-card-date {
  font-family: var(--cg);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-lt);
}


/* ══════════════════════════════════════
   ABOUT TEASER
══════════════════════════════════════ */
.about-section {
  padding: 96px var(--side-pad);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 480px;
}

.about-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.about-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--forest);
}

.about-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 2.3;
  color: var(--ink-mid);
  margin-bottom: 36px;
}


/* ══════════════════════════════════════
   CATEGORIES セクション
══════════════════════════════════════ */
.cat-section {
  background: var(--forest);
  padding: 72px var(--side-pad);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(248,244,238,0.08);
  margin-top: 48px;
}

.cat-item {
  background: var(--forest);
  padding: 40px 32px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.cat-item::before {
  content: attr(data-num);
  position: absolute;
  top: 12px; right: 20px;
  font-family: var(--cg);
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: rgba(248,244,238,0.05);
  line-height: 1;
  pointer-events: none;
}
.cat-item:hover { background: rgba(248,244,238,0.06); }

.cat-jp {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  color: rgba(248,244,238,0.85);
  position: relative;
  z-index: 1;
}
.cat-en {
  font-family: var(--cg);
  font-style: italic;
  font-size: 11px;
  color: rgba(248,244,238,0.35);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.cat-count {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(248,244,238,0.25);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.cat-section .sec-label { color: rgba(248,244,238,0.4); }
.cat-section .sec-title { color: rgba(248,244,238,0.75); font-weight: 200; }
.cat-section .sec-link  { color: rgba(248,244,238,0.35); border-color: rgba(248,244,238,0.2); }
.cat-section .sec-link:hover { color: rgba(248,244,238,0.65); }


/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */
.post-hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.post-hero img {
  object-position: center 30%;
  transition: transform 6s ease;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,23,18,0.5) 0%, transparent 60%);
}

.post-header {
  padding: 64px var(--side-pad) 48px;
  max-width: 760px;
  margin: 0 auto;
}

.post-cat {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.post-cat::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--forest);
}

.post-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--cg);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-lt);
  padding-top: 24px;
  border-top: 1px solid rgba(28,23,18,0.08);
}

/* 記事本文 */
.post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--side-pad) 96px;
}

.post-content p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2.4;
  color: var(--ink);
  margin-bottom: 32px;
}

.post-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 64px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(28,23,18,0.1);
}

.post-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 48px 0 20px;
}

.post-content blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--forest);
  background: var(--bg-lt);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-mid);
}

.post-content figure {
  margin: 48px calc(var(--side-pad) * -1);
}

.post-content figure img {
  border-radius: var(--r-md);
  height: auto;
}

.post-content figcaption {
  text-align: center;
  font-family: var(--cg);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-lt);
  margin-top: 12px;
}

.post-content .wp-block-image.alignwide {
  margin-left: calc(var(--side-pad) * -1);
  margin-right: calc(var(--side-pad) * -1);
}

/* 吹き出しブロック（別プラグインで定義、ここはスタイルのみ） */
.kn-balloon {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  align-items: flex-start;
}
.kn-balloon__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.kn-balloon__bubble {
  background: var(--bg-lt);
  border-radius: 0 var(--r-md) var(--r-md) var(--r-md);
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--ink);
  position: relative;
}
.kn-balloon__bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -10px;
  border: 5px solid transparent;
  border-right-color: var(--bg-lt);
  border-top-color: var(--bg-lt);
}

/* Post footer: tags, share */
.post-footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px var(--side-pad) 96px;
  border-top: 1px solid rgba(28,23,18,0.08);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.post-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  border: 1px solid rgba(28,23,18,0.15);
  padding: 4px 12px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
}
.post-tag:hover { background: var(--ink); color: var(--white); }

/* Related posts */
.related-posts {
  padding: 64px var(--side-pad);
  background: var(--bg-lt);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}


/* ══════════════════════════════════════
   ARCHIVE / CATEGORY
══════════════════════════════════════ */
.archive-header {
  padding: 72px var(--side-pad) 56px;
  background: var(--forest);
}

.archive-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.4);
  margin-bottom: 16px;
}

.archive-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.08em;
  color: rgba(248,244,238,0.85);
  line-height: 1.5;
}

.archive-desc {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 2;
  color: rgba(248,244,238,0.4);
  margin-top: 16px;
  max-width: 480px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  padding: 64px var(--side-pad);
  background: var(--bg-lt);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 48px var(--side-pad);
}
.pagination a,
.pagination span {
  font-family: var(--cg);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mid);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover,
.pagination .current {
  background: var(--forest);
  color: var(--white);
}


/* ══════════════════════════════════════
   TEXT LINK（汎用）
══════════════════════════════════════ */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cg);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mid);
  border-bottom: 1px solid rgba(28,23,18,0.2);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }
.text-link::after { content: '→'; font-style: normal; font-size: 11px; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  padding: 72px var(--side-pad) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 64px;
  padding-bottom: 56px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(248,244,238,0.07);
  align-items: start;
}

.footer-logo {
  font-family: var(--cg);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--bg);
  margin-bottom: 6px;
}
.footer-logo-sub {
  font-family: var(--cg);
  font-style: italic;
  font-size: 10px;
  color: rgba(242,237,228,0.3);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 11px;
  line-height: 2.2;
  color: rgba(242,237,228,0.35);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  align-content: start;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(242,237,228,0.35);
  letter-spacing: 0.06em;
  transition: color 0.2s;
  padding: 4px 0;
}
.footer-nav a:hover { color: rgba(242,237,228,0.7); }

.footer-sns-label {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.2);
  margin-bottom: 12px;
}
.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-sns a {
  font-family: var(--cg);
  font-style: italic;
  font-size: 13px;
  color: rgba(242,237,228,0.3);
  transition: color 0.2s;
}
.footer-sns a:hover { color: rgba(242,237,228,0.7); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(242,237,228,0.2);
  letter-spacing: 0.1em;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-family: var(--sans);
  font-size: 10px;
  color: rgba(242,237,228,0.18);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(242,237,228,0.45); }


/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.page-about-hero {
  padding: 80px var(--side-pad);
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}
.page-about-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(248,244,238,0.88);
}
.page-about-photo {
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-about-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px var(--side-pad);
}
.page-about-body p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2.5;
  color: var(--ink);
  margin-bottom: 32px;
}


/* ══════════════════════════════════════
   404 PAGE
══════════════════════════════════════ */
.error-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--side-pad);
  text-align: center;
}
.error-404-num {
  font-family: var(--cg);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 300;
  font-style: italic;
  color: rgba(28,23,18,0.06);
  line-height: 1;
  margin-bottom: 32px;
}
.error-404-title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
}
.error-404-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: 40px;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --side-pad: 32px;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interview-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .interview-photo-main {
    height: 400px;
    margin-left: calc(var(--side-pad) * -1);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --side-pad: 20px;
    --header-h: 56px;
  }

  /* Header: hamburger on, nav off */
  .site-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    order: -1;
    min-height: 0;
    height: 56vw;
    max-height: 400px;
  }
  .hero-photo-wrap {
    position: relative;
    inset: auto;
    height: 100%;
    border-radius: 0;
  }
  .hero-float { display: none; }
  .hero-left {
    padding: 48px var(--side-pad);
  }

  /* 縦書き→横書き */
  .hero-title {
    writing-mode: horizontal-tb;
    font-size: clamp(24px, 6vw, 36px);
    align-self: auto;
    margin-bottom: 24px;
  }

  .statement-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .statement-en {
    writing-mode: horizontal-tb;
  }

  /* Article grid: 1 col */
  .article-grid {
    grid-template-columns: 1fr;
  }
  .a-col-right { gap: 24px; }
  .a-card--lg .a-card-img { height: 240px; }
  .a-card--sm .a-card-img { height: 200px; }

  /* Feature bleed */
  .feature-bleed { height: 56vw; min-height: 260px; }

  /* Interview: stack */
  .interview-section {
    grid-template-columns: 1fr;
    padding: 64px var(--side-pad);
  }
  .interview-photo-main {
    height: 260px;
    border-radius: var(--r-md);
    margin-left: 0;
  }
  .interview-photo-sub { display: none; }
  .interview-name {
    writing-mode: horizontal-tb;
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 12px;
  }

  /* Latest rail */
  .latest-section { padding-left: var(--side-pad); }
  .l-card { width: 200px; }

  /* About */
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px var(--side-pad);
  }
  .about-photo { height: 280px; }

  /* Categories */
  .cat-section { padding: 56px var(--side-pad); }
  .cat-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Post */
  .post-header { padding: 40px var(--side-pad) 32px; }
  .post-content { padding: 0 var(--side-pad) 64px; }
  .post-content figure { margin-left: 0; margin-right: 0; }
  .post-content .wp-block-image.alignwide { margin-left: 0; margin-right: 0; }

  /* Related posts */
  .related-grid { grid-template-columns: 1fr; }

  /* Archive */
  .archive-grid { grid-template-columns: 1fr; }

  /* About page */
  .page-about-hero {
    grid-template-columns: 1fr;
  }
  .page-about-photo { height: 260px; }
}


/* ============================================================
   ARTICLE TABLE / 記事内テーブル
   floatをクリアして常にフル幅・エディトリアルな表組みに統一
   ============================================================ */
.post-content figure.wp-block-table {
  display: block;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin: 48px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.post-content table {
  clear: both;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg-lt);
  border: 1px solid rgba(28,23,18,0.1);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin: 48px 0;
}

.post-content figure.wp-block-table > table {
  margin: 0;
  border-radius: 0;
  border: none;
}

.post-content table th,
.post-content table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(28,23,18,0.08);
  text-align: left;
  vertical-align: top;
}

.post-content table tr:last-child th,
.post-content table tr:last-child td {
  border-bottom: none;
}

.post-content table th {
  background: rgba(46,61,42,0.06);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  width: 30%;
  white-space: nowrap;
}

/* 見出し・引用・埋め込みもfloatを確実に解除 */
.post-content h2,
.post-content h3,
.post-content blockquote,
.post-content .wp-block-embed,
.post-content .wp-block-image:not(.alignleft):not(.alignright) {
  clear: both;
}

/* モバイル：テーブルセルを詰める */
@media (max-width: 768px) {
  .post-content table th {
    width: auto;
    white-space: normal;
  }
  .post-content table th,
  .post-content table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
