:root {
      --ink: #151515;
      --paper: #f6f1e8;
      --paper-2: #e8dfcf;
      --muted: #625c52;
      --line: #d5cbbb;
      --deep: #172421;
      --green: #5e7a69;
      --card: #fffaf2;
      --accent: #c5a46a;
      --accent-light: #dbc28d;
      --white: #fbf6ec;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.75;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(246, 241, 232, 0.86);
      border-bottom: 1px solid rgba(21,21,21,0.08);
    }

    .header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand strong {
      font-size: 17px;
      letter-spacing: .08em;
      font-weight: 700;
    }

    .brand span {
      font-size: 10px;
      letter-spacing: .18em;
      color: var(--muted);
    }

    nav {
      display: flex;
      gap: 22px;
      font-size: 13px;
      letter-spacing: .04em;
      color: #39352f;
      align-items: center;
    }

    nav a {
      position: relative;
      padding: 6px 0;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    .hero {
      background:
        radial-gradient(circle at 72% 28%, rgba(197,164,106,0.26), transparent 26%),
        radial-gradient(circle at 20% 82%, rgba(94,122,105,0.32), transparent 30%),
        var(--deep);
      color: var(--white);
      min-height: 780px;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.08));
      pointer-events: none;
    }

    .hero-inner {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 104px 24px 92px;
      position: relative;
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      gap: 64px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 24px;
    }

    .eyebrow::before {
      content: "";
      width: 48px;
      height: 1px;
      background: var(--accent-light);
    }

    h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
      letter-spacing: -.055em;
      line-height: .94;
      font-size: clamp(56px, 8.2vw, 118px);
    }

    .hero h1 .jp {
      display: block;
      margin-top: 28px;
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
      font-size: clamp(27px, 3.2vw, 46px);
      line-height: 1.42;
      letter-spacing: .02em;
      font-weight: 700;
    }

    .hero-copy {
      max-width: 560px;
      margin-top: 32px;
      color: rgba(251,246,236,.78);
      font-size: 16px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: .08em;
      border: 1px solid rgba(251,246,236,.30);
    }

    .btn.primary {
      background: var(--white);
      color: #111;
      border-color: var(--white);
    }

    .hero-board {
      position: relative;
      min-height: 520px;
    }

    .lab-card {
      position: absolute;
      background: rgba(255,250,242,.94);
      color: var(--ink);
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 28px;
      box-shadow: 0 30px 100px rgba(0,0,0,.34);
      padding: 28px;
    }

    .lab-card.main {
      width: min(420px, 100%);
      right: 20px;
      top: 38px;
    }

    .lab-card.sub {
      width: 280px;
      left: 4px;
      bottom: 40px;
      transform: rotate(-3deg);
      background: var(--paper-2);
    }

    .stamp {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 156px;
      height: 156px;
      border-radius: 50%;
      border: 1px solid rgba(251,246,236,.38);
      display: grid;
      place-items: center;
      color: var(--accent-light);
      font-size: 11px;
      letter-spacing: .18em;
      text-align: center;
      transform: rotate(10deg);
    }

    .card-label {
      font-size: 11px;
      letter-spacing: .16em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .lab-card h2,
    .lab-card h3 {
      margin: 0;
      line-height: 1.28;
      letter-spacing: -.03em;
    }

    .lab-card h2 {
      font-size: 34px;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
    }

    .lab-card p {
      color: #555046;
      font-size: 13px;
      margin: 18px 0 0;
    }

    .ticker {
      display: flex;
      width: 100%;
      overflow: hidden;
      border-top: 1px solid rgba(21,21,21,.12);
      border-bottom: 1px solid rgba(21,21,21,.12);
      background: var(--card);
    }

    .ticker div {
      white-space: nowrap;
      padding: 18px 0;
      animation: move 38s linear infinite;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      letter-spacing: -.02em;
      color: #2b2925;
    }

    .ticker span {
      padding: 0 28px;
      color: var(--accent);
    }

    @keyframes move {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    section {
      padding: 104px 24px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 42px;
      align-items: start;
      margin-bottom: 44px;
    }

    .section-label {
      font-size: 12px;
      letter-spacing: .18em;
      color: var(--green);
      text-transform: uppercase;
      padding-top: 10px;
      font-weight: 700;
    }

    .section-title {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 5vw, 72px);
      font-weight: 500;
      letter-spacing: -.055em;
      line-height: 1.04;
    }

    .lead {
      max-width: 760px;
      color: #504b43;
      font-size: 16px;
    }


    .definition {
      background: var(--card);
      padding: 86px 24px;
      border-bottom: 1px solid var(--line);
    }

    .definition-intro {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 42px;
      align-items: start;
      margin-bottom: 34px;
    }

    .definition-title {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(36px, 4.8vw, 66px);
      font-weight: 500;
      letter-spacing: -.055em;
      line-height: 1.06;
    }

    .definition-copy {
      margin: 18px 0 0;
      max-width: 720px;
      color: #504b43;
      font-size: 16px;
    }

    .definition-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .definition-card {
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--paper);
      padding: 28px;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .definition-card strong {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 46px;
      font-weight: 500;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 22px;
    }

    .definition-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      letter-spacing: -.035em;
      line-height: 1.3;
    }

    .definition-card p {
      margin: 0;
      color: #625c52;
      font-size: 14px;
    }

    .feature {
      background: var(--paper);
    }

    .feature-panel {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 0;
      border: 1px solid var(--line);
      background: var(--card);
      border-radius: 34px;
      overflow: hidden;
      box-shadow: 0 20px 70px rgba(70, 58, 40, .10);
    }

    .feature-visual {
      min-height: 430px;
      background:
        linear-gradient(135deg, rgba(23,36,33,.92), rgba(23,36,33,.50)),
        radial-gradient(circle at 30% 25%, rgba(197,164,106,.44), transparent 30%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
      position: relative;
    }

    .feature-visual::after {
      content: "EXPERIENCE → HYPOTHESIS → ADVENTURE";
      position: absolute;
      left: 32px;
      bottom: 32px;
      color: var(--white);
      font-size: 13px;
      letter-spacing: .12em;
      border: 1px solid rgba(251,246,236,.34);
      border-radius: 999px;
      padding: 10px 14px;
    }

    .feature-body {
      padding: 52px;
    }

    .feature-body h3 {
      margin: 12px 0 18px;
      font-size: clamp(30px, 3.6vw, 54px);
      line-height: 1.08;
      letter-spacing: -.05em;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
    }

    .meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .pill {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      color: #5b554c;
      background: rgba(255,255,255,.34);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .editor-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 28px;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .editor-card.dark {
      background: var(--deep);
      color: var(--white);
      border-color: var(--deep);
    }

    .editor-card h3 {
      font-size: 25px;
      line-height: 1.35;
      margin: 18px 0 16px;
      letter-spacing: -.035em;
    }

    .editor-card p {
      color: #686157;
      font-size: 14px;
      margin: 0;
    }

    .editor-card.dark p {
      color: rgba(251,246,236,.72);
    }

    .arrow {
      margin-top: 30px;
      font-size: 28px;
    }


    .explore-board {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .explore-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 28px;
      min-height: 310px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .explore-card h3 {
      font-size: 25px;
      line-height: 1.35;
      margin: 18px 0 16px;
      letter-spacing: -.035em;
    }

    .explore-card p {
      color: #686157;
      font-size: 14px;
      margin: 0;
    }

    .explore-card.primary-card {
      background: var(--deep);
      color: var(--white);
      border-color: var(--deep);
    }

    .explore-card.primary-card p {
      color: rgba(251,246,236,.72);
    }

    .explore-card.people-card {
      background:
        radial-gradient(circle at 86% 16%, rgba(197,164,106,.26), transparent 28%),
        var(--paper-2);
    }

    .people-mini-visual {
      height: 88px;
      border-radius: 22px;
      margin-top: 28px;
      background:
        radial-gradient(circle at 18% 50%, #172421 0 18px, transparent 19px),
        radial-gradient(circle at 50% 50%, #172421 0 18px, transparent 19px),
        radial-gradient(circle at 82% 50%, #172421 0 18px, transparent 19px),
        linear-gradient(135deg, rgba(197,164,106,.85), rgba(94,122,105,.52));
      opacity: .92;
    }

    .people {
      background: #151714;
      color: var(--white);
    }

    .people .section-label {
      color: var(--accent-light);
    }

    .people .lead {
      color: rgba(251,246,236,.72);
    }

    .people-row {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: stretch;
    }

    .portrait-card {
      background: var(--white);
      color: var(--ink);
      border-radius: 34px;
      padding: 34px;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .portrait-mark {
      height: 160px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 50% 36%, #111 0 34px, transparent 35px),
        radial-gradient(circle at 50% 80%, #111 0 70px, transparent 71px),
        var(--accent);
      opacity: .9;
    }

    .people-list {
      display: grid;
      gap: 16px;
    }

    .person-line {
      border: 1px solid rgba(251,246,236,.18);
      border-radius: 24px;
      padding: 24px;
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 22px;
      align-items: center;
      background: rgba(255,255,255,.035);
    }

    .person-line span {
      font-size: 11px;
      letter-spacing: .16em;
      color: var(--accent-light);
      text-transform: uppercase;
    }

    .person-line h3 {
      margin: 0;
      font-size: 22px;
      letter-spacing: -.03em;
    }

    .log {
      background: var(--paper-2);
    }

    .post-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .post {
      background: rgba(255,250,242,.72);
      border: 1px solid rgba(21,21,21,.11);
      border-radius: 24px;
      padding: 22px;
      min-height: 260px;
    }

    .post .thumb {
      height: 92px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(23,36,33,.9), rgba(94,122,105,.56)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 12px);
      margin-bottom: 18px;
      overflow: hidden;
    }

    .post .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post h3 {
      margin: 0;
      line-height: 1.42;
      font-size: 18px;
      letter-spacing: -.03em;
    }

    .post p {
      font-size: 12px;
      color: #6a6358;
      margin: 14px 0 0;
    }

    .note {
      background: var(--card);
    }

    .note-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .note-block {
      border-top: 1px solid var(--ink);
      padding-top: 24px;
    }

    .note-block h3 {
      font-size: 32px;
      line-height: 1.25;
      letter-spacing: -.045em;
      margin: 0 0 16px;
    }


    /* Photo preview layer: layout is kept, only visual placeholders are replaced with real-photo samples */
    .feature-visual {
      background:
        linear-gradient(135deg, rgba(23,36,33,.72), rgba(23,36,33,.38)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat !important;
    }

    .post .thumb:nth-child(1) {
      background:
        linear-gradient(135deg, rgba(23,36,33,.62), rgba(94,122,105,.30)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
    }

    .post:nth-child(1) .thumb {
      background:
        linear-gradient(135deg, rgba(23,36,33,.62), rgba(94,122,105,.30)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
    }

    .post:nth-child(2) .thumb {
      background:
        linear-gradient(135deg, rgba(23,36,33,.62), rgba(94,122,105,.30)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
    }

    .post:nth-child(3) .thumb {
      background:
        linear-gradient(135deg, rgba(23,36,33,.62), rgba(94,122,105,.30)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
    }

    .post:nth-child(4) .thumb {
      background:
        linear-gradient(135deg, rgba(23,36,33,.62), rgba(94,122,105,.30)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
    }

    .portrait-mark {
      height: 190px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(23,36,33,.50), rgba(197,164,106,.18)),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat !important;
      opacity: 1;
    }

    .people-list .person-line {
      position: relative;
      overflow: hidden;
      padding-left: 146px;
      min-height: 122px;
    }

    .people-list .person-line::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 18px;
      bottom: 18px;
      width: 104px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(23,36,33,.55), rgba(197,164,106,.16)),
        var(--person-photo) center/cover no-repeat;
    }

    .people-list .person-line:nth-child(1) {
      --person-photo: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=80");
    }

    .people-list .person-line:nth-child(2) {
      --person-photo: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=700&q=80");
    }

    .people-list .person-line:nth-child(3) {
      --person-photo: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=700&q=80");
    }

    @media (max-width: 900px) {
      .people-list .person-line {
        padding-left: 24px;
        padding-top: 130px;
      }

      .people-list .person-line::before {
        left: 24px;
        top: 20px;
        right: 24px;
        bottom: auto;
        width: auto;
        height: 92px;
      }
    }


    /* v8: replace the traffic-light-like people mini visual with a clear photo preview */
    .explore-card.people-card {
      padding-bottom: 0;
    }

    .explore-card.people-card .people-mini-visual {
      height: 118px;
      margin: 26px -28px 0;
      border-radius: 0 0 28px 28px;
      background:
        linear-gradient(135deg, rgba(23,36,33,.38), rgba(197,164,106,.14)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=80") center/cover no-repeat !important;
      opacity: 1;
      position: relative;
      overflow: hidden;
    }

    .explore-card.people-card .people-mini-visual::before {
      content: "PEOPLE FEATURE";
      position: absolute;
      left: 18px;
      bottom: 16px;
      font-size: 10px;
      letter-spacing: .16em;
      color: rgba(251,246,236,.86);
      border: 1px solid rgba(251,246,236,.28);
      border-radius: 999px;
      padding: 7px 10px;
      background: rgba(23,36,33,.24);
    }


    /* v9: typography readability adjustment */
    .num {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      letter-spacing: 0;
      display: inline-block;
      transform: translateY(-0.01em);
    }

    .brand strong {
      letter-spacing: .065em;
    }

    h1 {
      letter-spacing: -.038em;
    }

    .section-title {
      letter-spacing: -.04em;
    }

    .footer-title {
      letter-spacing: -.04em;
    }

    .hero h1 .jp {
      letter-spacing: .01em;
    }

    .definition-title {
      letter-spacing: -.04em;
    }

    .lab-card h2 {
      letter-spacing: -.02em;
    }


    /* v10: Japanese large headings use gothic/sans for readability */
    .section-title,
    .definition-title {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      font-weight: 800;
      letter-spacing: -.035em;
      line-height: 1.18;
    }

    .section-title .num,
    .definition-title .num {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
      letter-spacing: 0;
    }

    .note-block h3,
    .editor-card h3,
    .explore-card h3,
    .person-line h3,
    .post h3 {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
    }


    /* v11: restore header logo and footer English title to the previous elegant typography */
    .brand strong {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      letter-spacing: .08em;
      font-weight: 700;
    }

    .footer-title {
      font-family: Georgia, "Times New Roman", serif;
      letter-spacing: -.055em;
      line-height: .95;
      font-weight: 500;
    }

    .site-footer {
      background: #111;
      color: var(--white);
      padding: 76px 24px 44px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      gap: 52px;
    }

    .footer-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(40px, 7vw, 96px);
      letter-spacing: -.06em;
      line-height: .95;
      margin: 0;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      color: rgba(251,246,236,.58);
      font-size: 12px;
      border-top: 1px solid rgba(251,246,236,.18);
      padding-top: 24px;
    }

    @media (max-width: 1100px) {
      .explore-board {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      nav {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner,
      .feature-panel,
      .mini-feature,
      .people-row,
      .note-layout {
        grid-template-columns: 1fr;
      }

      .hero-board {
        min-height: 420px;
      }

      .lab-card.main {
        left: 0;
        right: auto;
        top: 20px;
      }

      .lab-card.sub {
        left: 30px;
      }

      .section-head,
      .definition-intro {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .grid-3,
      .post-grid,
      .definition-grid,
      .explore-board {
        grid-template-columns: 1fr;
      }

      section {
        padding: 76px 20px;
      }

      .feature-body {
        padding: 34px 26px;
      }

      .person-line {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

/* TOPページ用モバイル横スクロールナビ */
.mobile-nav-bar {
  display: none;
}

@media (max-width: 900px) {
  .mobile-nav-bar {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(246, 241, 232, 0.96);
    border-bottom: 1px solid rgba(21, 21, 21, .08);
    position: sticky;
    top: 63px;
    z-index: 19;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-nav-bar::-webkit-scrollbar { display: none; }
  .mobile-nav-bar a {
    white-space: nowrap;
    font-size: 12px;
    padding: 5px 14px;
    border: 1px solid rgba(21, 21, 21, .14);
    border-radius: 99px;
    color: #39352f;
    flex-shrink: 0;
  }
}

/* explore-card / post を <a> で使う場合の display 補正 */
a.explore-card { display: flex; }
a.post { display: block; color: inherit; }
a.editor-card { display: flex; color: inherit; }
a.portrait-card { display: flex; color: inherit; }
a.person-line { display: grid; color: inherit; }
/* ============================================================
   People セクション v19 修正
   ============================================================ */

/* people-row: 右カードが左の高さに引き伸ばされないよう start に */
.people-row {
  align-items: start;
}

/* portrait-card: min-height を廃止、flex-start+gap で自然な高さに */
.portrait-card {
  min-height: 0;
  justify-content: flex-start;
  gap: 0;
}

/* portrait-thumb: 左カードのアイキャッチ */
.portrait-thumb {
  height: 200px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.portrait-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* portrait-body: テキスト部分 */
.portrait-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* タイトル・抜粋の色を明示（.people の white 継承を上書き） */
.portrait-card .portrait-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.42;
  letter-spacing: -.03em;
  color: #151515;
}
.portrait-card .portrait-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #3a3630;
}
.portrait-card .card-date {
  font-size: 11px;
  color: rgba(21, 21, 21, .46);
  letter-spacing: .04em;
}

/* card-date（右カードでも使う） */
.card-date {
  font-size: 11px;
  color: rgba(21, 21, 21, .46);
  letter-spacing: .04em;
}

/* people-list: 右カード列 */
.people-list {
  align-content: start;
}

/* person-line: 静的Unsplash疑似要素を無効化 */
.people-list .person-line {
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  min-height: 0;
}
.people-list .person-line::before {
  display: none;
}

/* person-thumb: 右カードのサムネイル */
.person-thumb {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(23,36,33,.55), rgba(197,164,106,.20));
}
.person-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23,36,33,.55), rgba(197,164,106,.20));
}
.person-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* person-info: 右カードのテキスト */
.person-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.person-info h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
  letter-spacing: -.03em;
  color: var(--white);
}
.person-info .card-date {
  color: rgba(251,246,236,.52);
}

/* スマホ */
@media (max-width: 900px) {
  .people-list .person-line {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .person-thumb {
    width: 90px;
    height: 90px;
  }
  .portrait-thumb {
    height: 180px;
  }
  .portrait-card .portrait-title {
    font-size: 19px;
  }
}
