:root {
  --green: #0a6a3c;
  --green-dark: #064328;
  --navy: #0b2f63;
  --gold: #c28a1c;
  --gold-light: #f4d98a;
  --red: #c73522;
  --ink: #1d241e;
  --muted: #5b665e;
  --line: #dfd6bf;
  --paper: #fffdf7;
  --pale: #f6fbf5;
  --shadow: 0 16px 38px rgba(53, 43, 24, 0.12);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(10, 106, 60, 0.08), transparent 28vw),
    var(--paper);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(1440px, 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 10px clamp(14px, 3vw, 32px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(194, 138, 28, 0.28);
  box-shadow: 0 10px 28px rgba(53, 43, 24, 0.08);
  backdrop-filter: blur(14px);
}

.header-brand {
  display: inline-grid;
  gap: 1px;
  justify-self: start;
  min-width: 0;
  color: var(--green-dark);
  line-height: 1.25;
}

.header-brand span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.header-brand b {
  display: block;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2.2vw, 25px);
  letter-spacing: 0.02em;
}

.menu-toggle {
  position: relative;
  justify-self: end;
  display: grid;
  grid-template-columns: 24px auto;
  gap: 3px 9px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #d8c690;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(53, 43, 24, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.menu-toggle span {
  grid-column: 1;
  width: 18px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle em {
  grid-column: 2;
  grid-row: 1 / 4;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.global-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: clamp(14px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px;
  width: min(420px, calc(100vw - 28px));
  padding: 14px;
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid #d8c690;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(53, 43, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header.menu-open .global-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.global-menu a {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #eee4c7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.global-menu a:hover {
  color: #fff;
  background: var(--green);
}

.hero {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: #fff;
}

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

.band {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0;
}

.pale {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1320px) / 2));
  background:
    linear-gradient(90deg, rgba(10, 106, 60, 0.06), rgba(194, 138, 28, 0.06)),
    #f8fbf5;
  border-top: 1px solid rgba(10, 106, 60, 0.12);
  border-bottom: 1px solid rgba(10, 106, 60, 0.12);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green));
}

.section-title span:last-child {
  background: linear-gradient(90deg, var(--green), transparent);
}

.section-title h2,
.ranking-headline h2,
.subsidy-copy h2,
.faq-section h2,
.summary-card h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.section-title h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-title.compact {
  margin-bottom: 8px;
}

.section-title small {
  display: block;
  color: #393229;
  font-family: "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.expert-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.meeting-visual,
.subsidy-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.meeting-visual img,
.subsidy-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.meeting-visual figcaption {
  padding: 10px 16px;
  color: var(--green-dark);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

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

.expert-card {
  position: relative;
  padding: 20px 16px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.expert-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 8px 8px 0 0;
}

.expert-label {
  display: inline-flex;
  padding: 4px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}

.expert-avatar,
.mini-avatar {
  display: grid;
  place-items: center;
  margin: 16px auto 8px;
  width: 70px;
  height: 70px;
  color: #fff;
  background: radial-gradient(circle at 32% 22%, #2a9f66, var(--green-dark));
  border: 3px solid #e8cf78;
  border-radius: 50%;
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 900;
}

.expert-face,
.chat-bubble img,
.face-speech > img {
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8cf78;
  box-shadow: 0 8px 18px rgba(53, 43, 24, 0.16);
}

.expert-face {
  width: 86px;
  height: 86px;
  margin: 16px auto 8px;
}

.expert-card h3 {
  margin: 4px 0 6px;
  font-size: 18px;
}

.expert-card p,
.expert-note,
.center-lead {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.expert-note {
  margin-top: 16px;
  padding: 12px 18px;
  color: var(--green-dark);
  text-align: center;
  background: rgba(10, 106, 60, 0.08);
  border-top: 1px solid rgba(10, 106, 60, 0.2);
  border-bottom: 1px solid rgba(10, 106, 60, 0.2);
}

.chat-thread {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.chat-thread.compact-chat {
  grid-template-columns: 1fr 1fr;
  width: min(1000px, 100%);
  margin: 24px auto 0;
}

.chat-bubble {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid #ead9a8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-bubble::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -9px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1px solid #ead9a8;
  border-top: 1px solid #ead9a8;
  transform: rotate(45deg);
}

.chat-bubble img {
  width: 58px;
  height: 58px;
}

.chat-bubble p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.chat-bubble strong {
  display: block;
  color: var(--green);
  margin-bottom: 3px;
}

.subsidy-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.subsidy-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.check-panel {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-panel div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(53, 43, 24, 0.08);
}

.check-panel span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-weight: 900;
}

.check-panel p {
  margin: 0;
  font-weight: 900;
}

.speech-box {
  width: min(980px, 100%);
  margin: 22px auto 0;
  padding: 20px 24px;
  background: #fff;
  border: 2px solid #ead9a8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.face-speech {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}

.face-speech > img {
  width: 72px;
  height: 72px;
}

.speech-box strong {
  color: var(--green);
}

.speech-box p {
  margin: 6px 0 0;
  font-weight: 700;
}

.center-lead {
  text-align: center;
  margin-bottom: 22px;
}

.grant-basics {
  padding-top: 54px;
}

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

.grant-flow article {
  position: relative;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.grant-flow b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid #e8cf78;
  font-size: 20px;
}

.grant-flow h3 {
  margin: 12px 0 6px;
  color: var(--green-dark);
  font-size: 20px;
}

.grant-flow p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.criteria-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.criteria-list article {
  padding: 22px 14px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icon,
.criteria-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
}

.icon {
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid #e8cf78;
  font-weight: 900;
}

.criteria-icon {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 10px 16px rgba(53, 43, 24, 0.12));
}

.criteria-list h3 {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 18px;
}

.criteria-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ranking-section {
  padding-top: 26px;
}

.ranking-headline {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 22px;
  text-align: center;
}

.ranking-headline h2 {
  font-size: clamp(26px, 3.4vw, 40px);
}

.ranking-headline p {
  margin: 0;
  font-weight: 900;
}

.ranking-headline span {
  color: var(--muted);
  font-size: 13px;
}

.rank-winner {
  display: block;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 247, 0.96)),
    #fff;
  border: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(116, 76, 13, 0.18);
}

.winner-top {
  display: grid;
  grid-template-columns: 140px 260px 1fr 330px;
  gap: 20px;
  align-items: center;
}

.winner-detail {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #ead9a8;
}

.winner-profile h3 {
  margin-top: 0;
}

.winner-medal {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  color: #513500;
  background:
    radial-gradient(circle at 30% 25%, #fff2b8, #d3a63a 55%, #9f7411);
  border: 4px solid #f8e7a5;
  border-radius: 50%;
  font-family: "Yu Mincho", serif;
  font-size: 42px;
  font-weight: 900;
}

.winner-brand {
  color: var(--green-dark);
  font-family: "Yu Mincho", serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
}

.winner-brand rt {
  font-size: 10px;
}

.winner-brand small {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: "Yu Gothic", sans-serif;
  font-size: 15px;
}

.winner-reason h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 18px;
}

.winner-reason ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.winner-reason li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.winner-reason li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.winner-score {
  padding: 16px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.winner-score dl {
  margin: 0;
}

.winner-score div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid #eee4c7;
}

.winner-score dt {
  font-weight: 800;
}

.winner-score dd {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
}

.winner-score b {
  color: var(--ink);
  margin-left: 6px;
}

.winner-score p {
  margin: 10px 0 0;
  text-align: right;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.winner-score strong {
  font-size: 30px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 74px 240px 1fr 120px 90px 112px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(53, 43, 24, 0.06);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #777;
  border-radius: 50%;
  font-weight: 900;
}

.rank-number.second { background: #858585; }
.rank-number.third { background: #b26925; }
.rank-number.fourth { background: #245784; }
.rank-number.fifth { background: #133f67; }

.rank-row h3 {
  margin: 0;
  font-size: 19px;
}

.rank-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.rank-row strong {
  font-size: 18px;
}

.accordion-trigger,
.faq-trigger {
  min-height: 36px;
  color: var(--green-dark);
  background: #f9fcf7;
  border: 1px solid #cfdacb;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.accordion-panel,
.faq-panel {
  display: none;
}

.accordion-panel.open,
.faq-panel.open {
  display: block;
}

.rank-row .accordion-panel {
  grid-column: 2 / -1;
  padding: 10px 14px;
  background: #fbfbf6;
  border-radius: 6px;
}

.rank-row .accordion-panel a {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
}

.ranking-comment {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  width: min(980px, 100%);
  margin: 20px auto 0;
  padding: 14px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-avatar {
  width: 54px;
  height: 54px;
  margin: 0;
  font-size: 24px;
}

.ranking-comment p {
  margin: 0;
  font-weight: 800;
}

.company-deep-dive {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.company-card {
  display: block;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(53, 43, 24, 0.08);
}

.company-card.first {
  border: 3px solid var(--gold);
  background: linear-gradient(90deg, #fff, #fffdf5);
}

.company-card.rank-winner {
  position: relative;
  margin-top: 10px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 244, 0.98)),
    #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 22px 52px rgba(116, 76, 13, 0.18);
}

.company-card.rank-winner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold), var(--green-dark));
}

.winner-preview {
  min-height: 360px;
  border: 2px solid #e4c36c;
  box-shadow: 0 14px 30px rgba(116, 76, 13, 0.12);
}

.company-preview {
  overflow: hidden;
  width: 100%;
  min-height: 280px;
  margin-bottom: 18px;
  background: #f7f3e7;
  border: 1px solid #ead9a8;
  border-radius: 8px;
}

.company-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.company-body {
  min-width: 0;
}

.rank-chip {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  min-height: 28px;
  padding: 0 12px;
  color: #4a3100;
  background: linear-gradient(180deg, #fff2b8, #d3a63a);
  border-radius: 999px;
  font-weight: 900;
}

.rank-chip.muted {
  color: #fff;
  background: #6d7770;
}

.company-body h3 {
  margin: 8px 0 8px;
  color: var(--green-dark);
  font-family: "Yu Mincho", serif;
  font-size: 28px;
  line-height: 1.3;
}

.winner-profile h3 {
  margin: 8px 0 2px;
  font-size: clamp(34px, 4vw, 50px);
}

.winner-profile h3 rt {
  font-size: 11px;
}

.winner-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.winner-badge {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.company-subtitle {
  color: var(--navy);
  font-size: 15px;
}

.winner-lead {
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 18px;
}

.company-body p {
  margin: 0;
  color: #333b35;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 12px 14px;
  background: #f9fcf7;
  border: 1px solid #d7e1d4;
  border-radius: 6px;
}

.mini-grid b,
.mini-grid span {
  display: block;
}

.mini-grid b {
  color: var(--green);
}

.mini-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.company-body blockquote {
  margin: 14px 0 0;
  padding: 12px 14px;
  color: var(--green-dark);
  background: #fffdf7;
  border-left: 4px solid var(--gold);
  font-weight: 800;
}

.company-scoreline {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
  padding: 12px;
  background: #fffdf7;
  border: 1px solid #ead9a8;
  border-radius: 8px;
}

.company-scoreline > span {
  display: grid;
  place-items: center;
  color: var(--red);
  text-align: center;
  font-weight: 900;
}

.company-scoreline strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.company-scoreline dl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 0;
}

.company-scoreline dl div {
  padding: 8px 6px;
  background: #fff;
  border: 1px solid #eee4c7;
  border-radius: 6px;
  text-align: center;
}

.company-scoreline dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-scoreline dd {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.winner-scoreline {
  background: linear-gradient(90deg, #fffdf2, #fff);
  border: 2px solid #e4c36c;
}

.winner-scoreline > span {
  color: var(--red);
  background: #fff;
  border-radius: 6px;
}

.winner-scoreline dl div {
  border-color: #e7cf82;
}

.winner-scoreline dd {
  color: var(--gold);
  font-size: 20px;
}

.winner-points {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.winner-points span {
  position: relative;
  padding: 10px 12px 10px 38px;
  color: var(--green-dark);
  background: #f7fbf3;
  border: 1px solid #d7e1d4;
  border-radius: 6px;
  font-weight: 900;
}

.winner-points span::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 6px;
  font-weight: 900;
}

.detail-cta.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #cfdacb;
}

.faq-section h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

.faq-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(53, 43, 24, 0.08);
}

.faq-trigger {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  text-align: left;
  background: #fff;
  border: 0;
  font-size: 15px;
}

.faq-trigger::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
}

.faq-trigger::after {
  content: "⌄";
  float: right;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "⌃";
}

.faq-panel {
  padding: 0 18px 16px 52px;
}

.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.summary-section {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 0;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.summary-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 63, 37, 0.92), rgba(5, 63, 37, 0.68), rgba(5, 63, 37, 0.15));
}

.summary-card {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 36px 40px;
  color: #fff;
}

.summary-card h2 {
  color: #fff;
  font-size: 34px;
}

.summary-card p {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 800;
}

.site-footer {
  width: min(1320px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 28px;
  color: #eef7ec;
  background:
    linear-gradient(135deg, rgba(6, 67, 40, 0.98), rgba(10, 106, 60, 0.92)),
    var(--green-dark);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px 38px;
}

.footer-brand span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.footer-brand b {
  display: block;
  margin-top: 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
}

.footer-brand p,
.footer-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.footer-nav a {
  min-height: 42px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 217, 138, 0.28);
  border-radius: 6px;
  font-weight: 900;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 217, 138, 0.28);
}

.footer-note small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: min(1320px, calc(100% - 48px));
  margin: 18px auto 40px;
  padding: 20px;
  background: #fff;
  border: 2px solid #ead9a8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-medal {
  color: var(--gold);
  font-family: "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 900;
}

.main-cta,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  color: #fff;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(10, 106, 60, 0.25);
  font-size: 20px;
  font-weight: 900;
}

.main-cta::after {
  content: "›";
  margin-left: 16px;
  font-size: 30px;
}

.sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .expert-row,
  .subsidy-grid {
    grid-template-columns: 1fr;
  }

  .winner-top {
    grid-template-columns: 110px 220px 1fr;
  }

  .winner-score {
    grid-column: 1 / -1;
  }

  .winner-detail {
    grid-template-columns: 1fr;
  }

  .company-scoreline {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 64px 210px 1fr 100px 80px;
  }

  .rank-row .accordion-trigger {
    grid-column: 1 / -1;
  }

  .chat-thread,
  .chat-thread.compact-chat {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  h2,
  h3,
  p,
  li,
  .subsidy-copy h2,
  .section-title h2,
  .company-body h3,
  .summary-card h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .subsidy-copy,
  .grant-basics,
  .criteria-section,
  .ranking-section {
    min-width: 0;
  }

  .subsidy-copy h2,
  .section-title h2,
  .grant-basics .center-lead {
    width: min(390px, calc(100vw - 28px));
  }

  .hero {
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .band,
  .final-cta,
  .site-footer,
  .summary-section {
    width: min(390px, calc(100% - 28px));
    padding-block: 36px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 58px;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-inline: 14px;
  }

  .header-brand {
    width: 100%;
  }

  .header-brand b {
    max-width: 210px;
    font-size: 17px;
    line-height: 1.25;
  }

  .menu-toggle {
    position: fixed;
    top: 7px;
    right: auto;
    left: 360px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 44px;
    min-height: 44px;
    padding: 0;
    place-content: center;
  }

  .menu-toggle span {
    grid-column: auto;
    width: 18px;
  }

  .menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .global-menu {
    position: fixed;
    top: 64px;
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .pale {
    width: 100%;
    padding-inline: 14px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-title span {
    width: 120px;
    margin: 0 auto;
  }

  .expert-cards,
  .criteria-list,
  .grant-flow,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .meeting-visual img,
  .subsidy-visual img {
    min-height: 240px;
  }

  .subsidy-copy h2,
  .ranking-headline h2,
  .section-title h2 {
    font-size: 26px;
  }

  .rank-winner {
    text-align: center;
  }

  .winner-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .winner-medal {
    margin: 0 auto;
  }

  .winner-brand {
    font-size: 42px;
  }

  .winner-reason {
    text-align: left;
  }

  .winner-score {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .winner-score div {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .winner-detail {
    grid-template-columns: 1fr;
  }

  .company-scoreline dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .winner-label-row {
    justify-content: center;
  }

  .winner-preview {
    min-height: 240px;
  }

  .rank-row {
    grid-template-columns: 56px 1fr;
    gap: 8px 12px;
  }

  .rank-row p,
  .rank-row .stars,
  .rank-row strong,
  .rank-row .accordion-trigger,
  .rank-row .accordion-panel {
    grid-column: 2 / -1;
  }

  .ranking-comment {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .face-speech,
  .chat-bubble {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .face-speech > img,
  .chat-bubble img {
    margin: 0 auto;
  }

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

  .company-card {
    padding: 14px;
  }

  .company-preview {
    min-height: 190px;
    margin-bottom: 14px;
  }

  .mini-avatar {
    margin: 0 auto;
  }

  .summary-section {
    min-height: 430px;
    padding: 0;
  }

  .summary-section::after {
    background: rgba(5, 63, 37, 0.78);
  }

  .summary-card {
    padding: 28px 22px;
  }

  .summary-card h2 {
    font-size: 28px;
  }

  .summary-card p {
    font-size: 15px;
  }

  .site-footer {
    padding: 26px 18px;
  }

  .footer-inner,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .final-cta {
    flex-direction: column;
    padding: 18px;
  }

  .main-cta {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    font-size: 16px;
  }

  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: block;
    padding: 10px 14px;
    background: rgba(255, 253, 247, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .sticky-cta a {
    width: 100%;
    min-height: 52px;
    padding: 0 12px;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .menu-toggle {
    left: 310px;
  }
}

@media (max-width: 340px) {
  .menu-toggle {
    left: 262px;
  }
}

body {
  padding-bottom: 140px;
}

.image-sticky-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 14px;
  z-index: 40;
  display: block;
  width: min(980px, calc(100% - 28px));
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 18px 42px rgba(53, 43, 24, 0.18);
  transform: translateX(-50%);
}

.image-sticky-cta a {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.image-sticky-cta img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 94px;
  }

  .image-sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
  }

  .image-sticky-cta img {
    border-radius: 0;
  }
}
