:root {
  --bg: #0c1220;
  --bg-soft: #121a2b;
  --surface: #182235;
  --surface-2: #1f2c43;
  --surface-3: #243551;
  --text: #edf2fb;
  --muted: #b5c0d5;
  --line: rgba(214, 186, 120, 0.18);
  --gold: #d6ba78;
  --gold-soft: #f0dfb0;
  --navy: #0f1728;
  --accent: #7d89d8;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(214, 186, 120, 0.14), transparent 26%),
    linear-gradient(180deg, #0a111d 0%, #0d1422 40%, #10192a 100%);
  line-height: 1.85;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 17, 29, 0.9);
  border-bottom: 1px solid rgba(214, 186, 120, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}
.nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo { height: 76px; width: auto; filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(237, 242, 251, 0.74);
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9ac69 0%, #8f7440 100%);
  color: #101722;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.section { padding: 90px 0; }
.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.18;
  color: #fff;
}
.section-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}
.light { color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(214, 186, 120, 0.12);
  border: 1px solid rgba(214, 186, 120, 0.18);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.eyebrow-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #efe700;
  padding: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(7, 12, 24, 0.18);
}
.hero-frame {
  position: relative;
  width: min(100%, 1800px);
  min-height: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, 1.04fr) minmax(560px, 0.96fr);
  align-items: stretch;
  overflow: visible;
}
.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 0 180px 34px;
}
.hero-copy {
  width: min(100%, 980px);
  margin-top: 22px;
  margin-right: -260px;
  padding: 26px 34px 30px;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.97) 0%, rgba(12, 21, 38, 0.95) 100%);
  border: 1px solid rgba(214, 186, 120, 0.14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(214, 186, 120, 0.12);
  border: 1px solid rgba(214, 186, 120, 0.22);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}
.hero-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.9rem, 5.6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-shadow: 0 10px 34px rgba(0,0,0,0.35);
}
.hero-copy h1 span {
  display: inline;
}
.hero-copy p {
  margin: 0 0 28px;
  max-width: 560px;
  color: rgba(237, 242, 251, 0.84);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat-card,
.vision-card,
.profile-card,
.achievement-card,
.soft-card,
.link-card,
.archive-row,
.contact-box,
.video-card,
.activity-card {
  background: linear-gradient(180deg, rgba(26, 37, 57, 0.96) 0%, rgba(20, 28, 43, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card {
  min-height: 148px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(27, 38, 58, 0.92) 0%, rgba(16, 24, 38, 0.96) 100%);
}
.stat-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.stat-card span {
  color: rgba(237, 242, 251, 0.78);
  font-size: 0.98rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding: 0 18px 0 0;
  overflow: visible;
}
.hero-person {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(100%, 900px);
  max-height: 900px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.32));
}
.hero-name-block {
  position: absolute;
  right: 58px;
  bottom: 34px;
  text-align: right;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.hero-shoulder {
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.hero-name {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}
.vision-section { position: relative; }
.vision-copy-wrap {
  position: relative;
  padding-right: 240px;
  margin-bottom: 28px;
}
.vision-lead { padding-bottom: 70px; }
.renge-corner {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 180px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.vision-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.vision-card::before,
.profile-card::before,
.soft-card::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #8f7440, #d9c187, #8f7440);
}
.vision-card h3 { margin: 0 0 12px; font-size: 1.25rem; color: var(--gold-soft); }
.vision-card p { margin: 0; color: var(--muted); }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.activity-card {
  overflow: hidden;
  margin: 0;
  background: #101827;
}
.activity-card.wide { grid-column: span 3; }
.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0.96;
}
.activity-card:hover img { transform: scale(1.03); opacity: 1; }
.activity-card.wide img {
  aspect-ratio: 16 / 6;
  object-position: center 30%;
}

.section-dark {
  background: linear-gradient(135deg, #111b2f 0%, #17284a 52%, #273b63 100%);
  border-top: 1px solid rgba(214, 186, 120, 0.12);
  border-bottom: 1px solid rgba(214, 186, 120, 0.12);
}
.video-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(214, 186, 120, 0.18);
}
.video-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(214,186,120,0.1);
}
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.video-copy {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-copy h3 { margin: 0 0 10px; font-size: 1.45rem; color: var(--gold-soft); }
.video-copy p { margin: 0 0 20px; color: rgba(255,255,255,0.84); }

.profile-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  padding: 28px;
  position: relative;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(214,186,120,0.15);
}
.profile-list {
  margin: 0;
  padding-left: 1.2em;
  columns: 2;
  column-gap: 34px;
}
.profile-list li { margin: 0 0 10px; color: var(--muted); break-inside: avoid; }

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}
.achievement-card { overflow: hidden; }
.achievement-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.achievement-card h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 1.06rem;
  color: #fff;
  text-align: center;
}
.soft-card { padding: 28px; position: relative; }
.soft-card h3 { margin: 0 0 16px; font-size: 1.3rem; color: var(--gold-soft); }
.soft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.soft-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(214, 186, 120, 0.08);
  border: 1px solid rgba(214, 186, 120, 0.18);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.archive-list {
  display: grid;
  gap: 18px;
}
.archive-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 18px;
  align-items: center;
}
.archive-row:hover,
.link-card:hover,
.achievement-card:hover,
.vision-card:hover {
  border-color: rgba(214, 186, 120, 0.34);
  transform: translateY(-2px);
  transition: .24s ease;
}
.archive-row img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  border-radius: 18px;
  background: #f4f4f4;
}
.archive-row h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #fff;
}
.archive-row p {
  margin: 0 0 10px;
  color: var(--muted);
}
.archive-row span {
  color: var(--gold-soft);
  font-weight: 800;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.link-card { padding: 24px; }
.link-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  margin-bottom: 18px;
}
.link-card h3 { margin: 0; font-size: 1.08rem; color: #fff; }

.contact-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  position: relative;
}
.contact-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.contact-logo { max-width: 360px; width: 100%; }
.site-footer {
  padding: 30px 0 50px;
  text-align: center;
  color: rgba(237, 242, 251, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-inner,
  .video-card,
  .profile-card,
  .contact-box,
  .archive-row {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    min-height: auto;
    padding-bottom: 24px;
  }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { justify-content: flex-end; }
  .achievement-grid,
  .link-grid,
  .vision-grid,
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activity-card.wide { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }
  .brand-logo { height: 58px; }
  .hero { padding-bottom: 10px; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats,
  .achievement-grid,
  .link-grid,
  .vision-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .activity-card.wide { grid-column: span 1; }
  .profile-list { columns: 1; }
  .section { padding: 68px 0; }
  .archive-row img { aspect-ratio: 16 / 7; }
  .contact-logo { max-width: 260px; }
  .vision-copy-wrap {
    padding-right: 0;
    padding-bottom: 130px;
  }
  .renge-corner {
    right: 50%;
    transform: translateX(50%);
    width: 170px;
    bottom: 0;
  }
  .hero-name-logo { width: 100%; }
}


/* 2026-03 revision */
.hero {
  padding: 28px 0 0;
}
.hero-inner {
  min-height: 820px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 24px;
}
.hero-copy {
  padding: 36px 0 72px;
}
.hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  margin-bottom: 22px;
}
.hero-copy p {
  font-size: 1.15rem;
  max-width: 640px;
}
.hero-visual {
  min-height: 760px;
}
.hero-person {
  width: min(100%, 820px);
  max-height: 900px;
  object-position: center bottom;
}
.subsection-title {
  margin-top: 34px;
}
.soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.soft-item {
  min-height: 112px;
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 37, 57, 0.96) 0%, rgba(20, 28, 43, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.soft-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #8f7440, #d9c187, #8f7440);
}
.soft-item h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #fff;
  text-align: center;
}
.archive-list {
  display: grid;
  gap: 22px;
}
.archive-row {
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: 26px;
  padding: 24px 28px;
  align-items: center;
}
.archive-row:nth-child(even) {
  grid-template-columns: 1fr minmax(260px, 330px);
}
.archive-row:nth-child(even) .archive-image-wrap {
  order: 2;
}
.archive-row:nth-child(even) .archive-content {
  order: 1;
}
.archive-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-row img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: contain;
  object-position: center top;
  padding: 6px;
  background: #e8e8e8;
  border-radius: 18px;
}
.archive-content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 2.2vw, 2.1rem);
  line-height: 1.3;
}
.archive-content p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.8;
}
.contact-logo {
  max-width: 360px;
  width: 100%;
  filter: brightness(0) invert(1);
}
@media (max-width: 1100px) {
  .soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .archive-row,
  .archive-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .archive-row:nth-child(even) .archive-image-wrap,
  .archive-row:nth-child(even) .archive-content {
    order: initial;
  }
}
@media (max-width: 820px) {
  .hero-copy {
    padding-top: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 8.2vw, 4rem);
  }
  .hero-visual {
    min-height: 0;
  }
  .hero-person {
    width: min(100%, 560px);
  }
  .soft-grid {
    grid-template-columns: 1fr;
  }
  .archive-row {
    padding: 20px;
    gap: 20px;
  }
  .archive-content h3 {
    font-size: 1.32rem;
  }
}

@media (max-width: 1080px) {
  .hero-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    padding: 24px 16px 0;
  }
  .hero-copy {
    width: 100%;
    margin-top: 0;
  }
  .hero-visual {
    padding: 0 16px 120px;
  }
  .hero-person {
    max-height: 620px;
  }
  .hero-name-block {
    right: 24px;
    bottom: 18px;
  }
}
@media (max-width: 720px) {
  .hero-copy {
    padding: 22px 20px 24px;
  }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }
  .hero-copy p {
    font-size: 0.96rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .stat-card {
    min-height: auto;
  }
  .hero-visual {
    padding: 0 12px 96px;
  }
  .hero-person {
    max-height: 500px;
  }
  .hero-name-block {
    left: 14px;
    right: 14px;
    text-align: center;
  }
  .hero-shoulder {
    letter-spacing: 0.12em;
  }
  .hero-name {
    letter-spacing: 0.08em;
  }
}

/* 2026-03-28 refinement */
.hero {
  background: linear-gradient(135deg, #c9c5cd 0%, #d5d1c7 48%, #c3c0cb 100%);
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.28), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(214,186,120,0.12), transparent 28%);
  pointer-events: none;
}
.hero-frame {
  width: min(calc(100% - 40px), 1700px);
  min-height: 790px;
  grid-template-columns: minmax(680px, 1.08fr) minmax(440px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}
.hero-panel {
  padding: 36px 0 34px 8px;
  align-items: stretch;
}
.hero-copy {
  width: min(100%, 900px);
  margin-top: 0;
  padding: 34px 22px 34px 14px;
  background: transparent;
  border-right: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-kicker {
  align-self: flex-start;
  margin-bottom: 18px;
  min-height: 34px;
  padding: 6px 12px;
  font-size: 0.88rem;
  color: #f6e7b7;
  background: linear-gradient(135deg, #13213a 0%, #1d3053 100%);
  border-color: rgba(214, 186, 120, 0.28);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}
.hero-copy h1 {
  margin: 0;
  color: #1d246d;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: none;
}
.hero-name-block {
  position: static;
  margin: 26px 0 22px;
  text-align: left;
  color: #1d246d;
  text-shadow: none;
}
.hero-shoulder {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hero-name {
  font-size: clamp(4rem, 8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.hero-copy p {
  margin: 0 0 18px;
  max-width: 700px;
  color: #273249;
  font-size: 1.06rem;
  line-height: 1.9;
}
.hero-links {
  margin-bottom: 18px;
  gap: 22px;
}
.hero-links a {
  color: #1d246d;
  font-weight: 800;
  border-bottom: 1px solid rgba(29,36,109,0.35);
  padding-bottom: 2px;
}
.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
}
.stat-card {
  min-height: 106px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(16, 27, 47, 0.97) 0%, rgba(13, 22, 40, 0.97) 100%);
}
.hero-visual {
  padding: 40px 14px 0 0;
  justify-content: center;
  align-items: end;
}
.hero-person {
  width: min(100%, 700px);
  max-height: 760px;
}

.soft-grid {
  grid-template-columns: repeat(3, 1fr);
}
.soft-item {
  min-height: 112px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soft-item h3 {
  width: 100%;
  margin: 0;
  line-height: 1.5;
}

.archive-row {
  grid-template-columns: minmax(250px, 300px) 1fr;
  gap: 24px;
  padding: 22px 24px;
}
.archive-row:nth-child(even) {
  grid-template-columns: 1fr minmax(250px, 300px);
}
.archive-row img {
  aspect-ratio: 4 / 2.15;
  object-fit: contain;
  object-position: center center;
  padding: 10px 8px;
  background: #e3e3e3;
}
.archive-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.35;
}
.archive-content p {
  margin: 0 0 10px;
}

@media (max-width: 1080px) {
  .hero-frame {
    width: min(calc(100% - 24px), 1200px);
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    padding: 22px 0 0;
  }
  .hero-copy {
    padding: 24px 12px 8px;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .hero-shoulder {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
  }
  .hero-name {
    font-size: clamp(3.2rem, 9vw, 5.6rem);
  }
  .hero-visual {
    padding: 0 8px 28px;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    padding: 24px 6px 6px;
  }
  .hero-links {
    gap: 14px;
  }
  .hero-stats,
  .soft-grid {
    grid-template-columns: 1fr;
  }
  .archive-row,
  .archive-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1100px) {
  .hero-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    padding: 24px 20px 0;
  }
  .hero-copy {
    width: 100%;
    margin-right: 0;
    padding: 22px 22px 24px;
  }
  .hero-copy h1 {
    white-space: normal;
    font-size: clamp(2.6rem, 8vw, 4.3rem);
  }
  .hero-visual {
    min-height: 520px;
    padding: 0 16px;
    justify-content: center;
  }
  .hero-person {
    position: relative;
    width: min(100%, 680px);
    max-height: 680px;
  }
  .hero-name-block {
    right: 26px;
    bottom: 24px;
  }
}


/* 2026-03-28 hero headline single-line refinement */
.hero-frame {
  grid-template-columns: minmax(620px, 1.16fr) minmax(520px, 0.84fr);
  gap: 0;
}
.hero-panel {
  z-index: 3;
  padding: 28px 0 28px 8px;
}
.hero-copy {
  width: min(100%, 1080px);
  padding: 28px 0 30px 14px;
  position: relative;
}
.hero-copy h1 {
  position: relative;
  z-index: 5;
  margin: 0 0 18px;
  font-size: clamp(3.7rem, 6.25vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  white-space: nowrap;
  margin-right: -220px;
}
.hero-copy h1 span {
  display: inline;
  white-space: inherit;
}
.hero-copy p {
  max-width: 560px;
}
.hero-visual {
  z-index: 1;
  padding: 26px 0 0 0;
  justify-content: flex-end;
}
.hero-person {
  width: min(100%, 780px);
  max-height: 820px;
}

@media (max-width: 1280px) {
  .hero-copy h1 {
    margin-right: -140px;
    font-size: clamp(3.4rem, 6.1vw, 6rem);
  }
  .hero-person {
    width: min(100%, 740px);
  }
}

@media (max-width: 1100px) {
  .hero-frame {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-panel {
    padding: 24px 20px 0;
  }
  .hero-copy {
    width: 100%;
    padding: 22px 22px 16px;
  }
  .hero-copy h1 {
    margin-right: 0;
    white-space: nowrap;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
  }
  .hero-visual {
    min-height: 520px;
    padding: 0 12px;
    justify-content: center;
  }
  .hero-person {
    width: min(100%, 700px);
    max-height: 700px;
  }
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3.4rem);
    letter-spacing: -0.05em;
  }
}


/* baseline-preserving tweak: hero title single-line as much as possible */
.hero-copy h1 {
  white-space: nowrap;
}
.hero-copy h1 span {
  display: inline;
}
@media (max-width: 1200px) {
  .hero-copy {
    margin-right: -180px;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  }
}
@media (max-width: 1080px) {
  .hero-copy {
    margin-right: 0;
  }
  .hero-copy h1 {
    white-space: normal;
  }
  .hero-person {
    width: min(100%, 760px);
  }
}

/* 2026-03-28 approved-baseline tweak: hero balance */
@media (min-width: 1081px) {
  .hero-frame {
    grid-template-columns: minmax(640px, 1.12fr) minmax(500px, 0.88fr);
  }

  .hero-copy {
    width: min(100%, 1120px);
    margin-right: -140px;
    padding: 28px 0 34px 14px;
  }

  .hero-copy h1 {
    margin-right: -170px;
  }

  .hero-name-block {
    align-self: flex-end;
    margin: 24px -110px 22px 0;
    text-align: right;
  }

  .hero-copy p {
    max-width: 560px;
  }

  .hero-visual {
    justify-content: flex-start;
    padding: 20px 0 0 0;
    min-height: 790px;
  }

  .hero-person {
    left: -78px;
    right: auto;
    width: min(100%, 820px);
    max-height: 860px;
  }

  .hero-stats {
    max-width: 860px;
    align-items: stretch;
  }

  .stat-card {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
  }

  .stat-card strong {
    margin-bottom: 10px;
    line-height: 1.1;
  }

  .stat-card span {
    display: block;
    line-height: 1.55;
  }
}

@media (max-width: 1080px) {
  .hero-name-block {
    align-self: flex-start;
    margin-right: 0;
    text-align: left;
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* 2026-03-28 approved-baseline tweak 2: hero head lower, name left, balance */
@media (min-width: 1081px) {
  .hero-frame {
    grid-template-columns: minmax(650px, 1.08fr) minmax(520px, 0.92fr);
  }

  .hero-copy {
    margin-right: -120px;
  }

  .hero-copy h1 {
    margin-right: -150px;
  }

  .hero-name-block {
    margin: 18px -40px 22px 0;
    transform: translateX(-78px);
  }

  .hero-visual {
    min-height: 805px;
    padding-top: 34px;
  }

  .hero-person {
    left: -96px;
    bottom: -18px;
    width: min(100%, 840px);
    max-height: 875px;
  }

  .hero-stats {
    max-width: 900px;
    gap: 16px;
  }

  .stat-card {
    min-height: 126px;
    padding: 20px 18px;
  }
}


/* 2026-03-28 requested tweak: remove header CTA, enlarge hero name */
.hero-shoulder {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.hero-name {
  font-size: clamp(4.8rem, 8.8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
@media (max-width: 1080px) {
  .hero-shoulder {
    font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  }
  .hero-name {
    font-size: clamp(3.8rem, 10vw, 6rem);
  }
}
@media (max-width: 720px) {
  .hero-shoulder {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .hero-name {
    font-size: clamp(3rem, 11vw, 4.8rem);
  }
}


/* 2026-03-28 requested tweak: header brand as text */
.brand {
  text-decoration: none;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: #fff;
  white-space: nowrap;
}
.brand-role {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(237, 242, 251, 0.88);
}
.brand-name {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
}
@media (max-width: 900px) {
  .brand-text {
    gap: 10px;
  }
  .brand-role {
    font-size: 0.82rem;
  }
  .brand-name {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 640px) {
  .brand-text {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .brand-role {
    width: 100%;
    font-size: 0.78rem;
  }
  .brand-name {
    font-size: 1.45rem;
  }
}


/* =============================
   後で自分で直しやすくするための説明メモ（編集用まとめ）
   下の設定は「見た目を後から触りやすい主要部分」を
   まとめて再掲したものです。
   数値を変えると、その項目の印象が変わります。
   ============================= */

/* ヘッダー全体の高さ */
.nav {
  min-height: 104px; /* ヘッダーの上下の高さ。大きくするとヘッダーが高くなる */
}

/* ヘッダー左上の肩書き「山梨県議会議員」 */
.brand-role {
  font-size: 0.95rem; /* 文字サイズ */
  font-weight: 700; /* 太さ。200〜900まで指定可 */
  letter-spacing: 0.06em; /* 文字間。広げるとゆったり見える */
  color: rgba(237, 242, 251, 0.88); /* 文字色 */
}

/* ヘッダー左上の氏名「河西 敏郎」 */
.brand-name {
  font-size: 2.1rem; /* 文字サイズ */
  font-weight: 900; /* 太さ */
  letter-spacing: 0.12em; /* 文字間 */
  line-height: 1; /* 行の高さ */
  color: #fff; /* 文字色 */
}

/* ヘッダー右側のメニュー文字 */
.nav-links a {
  font-size: 0.96rem; /* メニュー文字サイズ */
  font-weight: 700; /* メニュー文字の太さ */
  letter-spacing: 0.04em; /* メニューの文字間 */
  color: rgba(237, 242, 251, 0.74); /* 通常時の文字色 */
}

/* トップの背景全体 */
.hero {
  background: linear-gradient(135deg, #c9c5cd 0%, #d5d1c7 48%, #c3c0cb 100%); /* 背景色・グラデーション */
  padding: 0; /* 上下の余白 */
}

/* トップ全体の横幅と左右バランス */
.hero-frame {
  width: min(calc(100% - 40px), 1700px); /* トップ全体の最大横幅 */
  min-height: 790px; /* トップ全体の最低高さ */
  grid-template-columns: minmax(620px, 1.16fr) minmax(520px, 0.84fr); /* 左右の幅バランス */
}

/* 左側の黒い説明エリア */
.hero-copy {
  width: min(100%, 1080px); /* 説明エリアの横幅 */
  padding: 28px 0 30px 14px; /* 上 右 下 左の内側余白 */
}

/* 小見出し「河西敏郎県政報告」 */
.hero-kicker {
  font-size: 0.88rem; /* 小見出しの文字サイズ */
  padding: 6px 12px; /* 小見出しの内側余白 */
  color: #f6e7b7; /* 小見出しの文字色 */
}

/* メイン見出し「幸せ色のまちづくり」 */
.hero-copy h1 {
  font-size: clamp(3.7rem, 6.25vw, 6.9rem); /* 見出しサイズ */
  line-height: 0.94; /* 行間。小さいほど詰まる */
  letter-spacing: -0.07em; /* 文字間。マイナスで詰まる */
  white-space: nowrap; /* 改行させたくない時の設定 */
  margin-right: -220px; /* 右へ張り出す量 */
}

/* トップ見出し下の説明文 */
.hero-copy p {
  max-width: 800px; /* 自動改行しにくくする本文の横幅 */
  color: #273249; /* 文字色 */
  font-size: 1.06rem; /* 文字サイズ */
  line-height: 1.9; /* 行間 */
}

/* トップの肩書き＋氏名のまとまり */
.hero-name-block {
  margin: 18px -40px 22px 0; /* 上 右 下 左の余白 */
  transform: translateX(-78px); /* 左右位置の微調整。プラスで右、マイナスで左 */
}

/* トップの肩書き「山梨県議会議員」 */
.hero-shoulder {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem); /* 文字サイズ */
  font-weight: 900; /* 太さ */
  letter-spacing: 0.01em; /* 文字間 */
  margin-bottom: 8px; /* 下の名前との間隔 */
}

/* トップの氏名「河西 敏郎」 */
.hero-name {
  font-size: clamp(4.8rem, 8.8vw, 8.2rem); /* 氏名の文字サイズ */
  font-weight: 900; /* 太さ */
  letter-spacing: -0.03em; /* 文字間 */
  line-height: 0.92; /* 行の高さ */
}

/* 右側の人物写真エリア */
.hero-visual {
  padding: 20px 0 0 0; /* 写真エリアの余白 */
  min-height: 790px; /* 写真エリアの高さ */
}

/* 人物写真そのもの */
.hero-person {
  left: -96px; /* 写真を左へ寄せる量 */
  bottom: -40px; /* 写真の下位置 */
  width: min(100%, 840px); /* 写真の大きさ */
  max-height: 875px; /* 写真の最大高さ */
}

/* トップ下の3つのカード全体 */
.hero-stats {
  max-width: 900px; /* カード3枚全体の横幅 */
  gap: 16px; /* カード同士の間隔 */
}

/* 3つのカード共通 */
.stat-card {
  min-height: 126px; /* カードの高さ */
  padding: 20px 18px; /* カード内の余白 */
  border-radius: 24px; /* 角丸 */
}

/* 3つのカードの1行目（県民目線など） */
.stat-card strong {
  font-size: 1.8rem; /* 1行目の文字サイズ */
  margin-bottom: 10px; /* 2行目との間隔 */
}

/* 3つのカードの2行目（説明文） */
.stat-card span {
  font-size: 0.98rem; /* 説明文字サイズ */
  line-height: 1.55; /* 説明文の行間 */
}

/* セクション共通の大見出し */
.section-title {
  font-size: clamp(2rem, 3vw, 2.95rem); /* セクション見出しサイズ */
  line-height: 1.18; /* 見出し行間 */
}

/* セクション左上の小ラベル */
.eyebrow {
  font-size: 0.9rem; /* 小ラベルの文字サイズ */
  padding: 7px 14px; /* 小ラベルの余白 */
  letter-spacing: 0.08em; /* 小ラベルの文字間 */
}

/* 動画エリア全体の箱 */
.video-card {
  grid-template-columns: 1.25fr 0.75fr; /* 左右比率。左を広くしたい時は左の数値を大きくする */
  gap: 24px; /* 動画と説明の間隔 */
  padding: 24px; /* 箱の内側余白 */
}

/* 動画右側の見出し */
.video-copy h3 {
  font-size: 1.45rem; /* 動画見出しサイズ */
  color: var(--gold-soft); /* 動画見出し色 */
}

/* 動画右側の説明文 */
.video-copy p {
  font-size: 1rem; /* 動画説明文字サイズ */
  line-height: 1.8; /* 動画説明の行間 */
}

/* プロフィール写真 */
.profile-photo img {
  min-height: 430px; /* 写真の高さ */
  border-radius: 20px; /* 角丸 */
  object-position: center top; /* 写真の見せ方。上寄せ */
}

/* ハードウェア実績の3列 */
.achievement-grid {
  grid-template-columns: repeat(3, 1fr); /* 3列表示 */
  gap: 22px; /* カード同士の間隔 */
}

/* ハードウェア実績の画像 */
.achievement-card img {
  aspect-ratio: 4 / 3; /* 画像の縦横比 */
  object-fit: cover; /* 枠いっぱいに表示 */
}

/* ハードウェア実績のタイトル文字 */
.achievement-card h3 {
  font-size: 1.06rem; /* タイトル文字サイズ */
  padding: 18px 20px 20px; /* タイトル部分の余白 */
  text-align: center; /* 中央揃え */
}

/* ソフトウェア実績の3列 */
.soft-grid {
  grid-template-columns: repeat(3, 1fr); /* 3列表示 */
  gap: 22px; /* カード同士の間隔 */
}

/* ソフトウェア実績の1つ1つの箱 */
.soft-item {
  min-height: 112px; /* 箱の高さ */
  padding: 12px 18px; /* 内側余白 */
  border-radius: 24px; /* 角丸 */
}

/* ソフトウェア実績の文字 */
.soft-item h3 {
  font-size: 1.08rem; /* 文字サイズ */
  line-height: 1.5; /* 行間 */
  text-align: center; /* 中央揃え */
}

/* バックナンバー全体の1行 */
.archive-row {
  grid-template-columns: minmax(250px, 300px) 1fr; /* 左の画像幅と右の本文幅 */
  gap: 24px; /* 左右の間隔 */
  padding: 22px 24px; /* 内側余白 */
}

/* バックナンバーの表紙画像 */
.archive-row img {
  aspect-ratio: 4 / 2.15; /* 表紙画像の縦横比 */
  object-fit: contain; /* 画像全体を見せる */
  padding: 10px 8px; /* 画像まわりの余白 */
  background: #e3e3e3; /* 背景色 */
}

/* バックナンバーのタイトル */
.archive-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); /* タイトル文字サイズ */
  line-height: 1.35; /* 行間 */
}

/* バックナンバーの説明文 */
.archive-content p {
  font-size: 0.98rem; /* 説明文字サイズ */
  line-height: 1.8; /* 行間 */
}

/* 関連リンクの3列 */
.link-grid {
  grid-template-columns: repeat(3, 1fr); /* 3列表示 */
  gap: 22px; /* カード間隔 */
}

/* 関連リンク画像 */
.link-card img {
  height: 160px; /* 画像の高さ */
  object-fit: contain; /* ロゴ全体を見せる */
  border-radius: 16px; /* 角丸 */
}

/* お問い合わせ全体の箱 */
.contact-box {
  padding: 34px; /* 内側余白 */
  grid-template-columns: 1fr auto; /* 左右の幅バランス */
  gap: 22px; /* 左右の間隔 */
}

/* お問い合わせの本文 */
.contact-text {
  font-size: 1.05rem; /* 文字サイズ */
  line-height: 1.9; /* 行間 */
}

/* 画面が小さい時のヘッダー文字 */
@media (max-width: 900px) {
  .brand-role {
    font-size: 0.82rem; /* タブレット時の肩書きサイズ */
  }

  .brand-name {
    font-size: 1.7rem; /* タブレット時の氏名サイズ */
  }
}

/* スマホ時のヘッダー文字 */
@media (max-width: 640px) {
  .brand-role {
    font-size: 0.78rem; /* スマホ時の肩書きサイズ */
  }

  .brand-name {
    font-size: 1.45rem; /* スマホ時の氏名サイズ */
  }
}

/* スマホ時のトップ大見出し */
@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3.4rem); /* スマホ時の見出しサイズ */
    letter-spacing: -0.05em; /* スマホ時の文字間 */
  }

  .hero-copy p {
    font-size: 0.96rem; /* スマホ時の説明文サイズ */
  }
}
