/* ============================================================
   公益資本主義 実装センター — Site Styles
   Based on Visitors design system (analytical / vibrant spectrum)
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Inter', var(--font-openrunde);
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-slate-ink);
  background: var(--color-canvas-white);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--color-light-gray);
  background: rgba(255, 255, 255, 0.95);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-text { font-size: 16px; color: var(--color-slate-ink); }
.brand-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  display: block;
}
.brand-logo-footer {
  width: 40px; height: 40px;
  filter: brightness(1.05);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 15px;
  padding: 10px 14px;
  color: var(--color-medium-gray);
  border-radius: 9999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--color-action); background: var(--color-blue-pale); }
.nav-cta {
  font-size: 15px;
  padding: 10px 14px;
  color: var(--color-medium-gray);
  border-radius: 9999px;
  margin-left: 4px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-cta:hover { color: var(--color-action); background: var(--color-blue-pale); }
.nav-link { white-space: nowrap; }
.brand-text { white-space: nowrap; }

@media (max-width: 720px) {
  .nav-link { display: none; }
  .nav-cta { padding: 8px 14px; }
  .brand-text { font-size: 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 9999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--color-action);
  color: #fff;
  box-shadow: var(--shadow-subtle);
}
.btn-primary:hover { background: var(--color-action-hover); transform: translateY(-1px); }
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-hero {
  padding: 18px 56px;
  font-size: 18px;
  min-width: 420px;
  background: linear-gradient(100deg,
    var(--color-blue) 0%, #2c78fc 35%, var(--color-blue-deep) 65%, var(--color-blue) 100%);
  background-size: 220% auto;
  box-shadow: 0 10px 28px rgba(var(--rgb-blue), 0.38), var(--shadow-subtle);
  animation: btnHeroFlow 18s linear infinite;
}
@keyframes btnHeroFlow {
  from { background-position: 0% center; }
  to   { background-position: 220% center; }
}
.btn-hero:hover {
  background: linear-gradient(100deg,
    var(--color-blue) 0%, #2c78fc 35%, var(--color-blue-deep) 65%, var(--color-blue) 100%);
  background-size: 220% auto;
  box-shadow: 0 14px 36px rgba(var(--rgb-blue), 0.5), var(--shadow-subtle);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .btn-hero { animation: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-sky.jpg');
  background-size: cover;
  background-position: center 100%;
  filter: saturate(110%);
  transform-origin: center bottom;
  transform: scale(1.22) translateX(7%);
  will-change: transform;
  animation: heroPan 18s linear infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.22) translateX(7%); }
  to   { transform: scale(1.22) translateX(-7%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: scale(1.05); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,40,0.45) 0%, rgba(10,18,40,0.35) 40%, rgba(10,18,40,0.65) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 24px 140px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(28px, 5.4vw, 56px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg,
    #ffd76b 0%, #ffa600 22%, #ff7a59 44%, #8fc31f 70%, #2c78fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 4px;
  animation: heroTitleFlow 16s ease-in-out infinite alternate;
}
@keyframes heroTitleFlow {
  from { background-position: 0% center; }
  to   { background-position: 100% center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title em { animation: none; }
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 2;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 8px;
  background: rgba(255,255,255,0.85);
  margin: 6px auto 0;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--color-action);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-slate-ink);
  /* 日本語の禁則を強める：単語/句の途中で折返さない */
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.section-sub {
  margin-top: 16px;
  color: var(--color-medium-gray);
  font-size: 17px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ---------- About (Vision) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-right p { color: var(--color-medium-gray); margin-bottom: 20px; font-size: 17px; line-height: 2; }
.about-right .lead { font-size: 18px; color: var(--color-slate-ink); }
.about-right .quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--color-action);
  background: linear-gradient(90deg, rgba(var(--rgb-blue),0.08) 0%, rgba(var(--rgb-blue),0) 100%);
  border-radius: 0 12px 12px 0;
  font-size: 19px;
  line-height: 1.9;
}
.about-right .quote strong {
  font-size: 24px;
  color: var(--color-action);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- About PIC ---------- */
.about-pic { background: var(--color-green-pale); }
.about-pic-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-subtle-3);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-pic-left p { color: var(--color-medium-gray); margin-bottom: 16px; line-height: 1.95; font-size: 17px; }
.about-pic-left .muted { color: var(--color-muted-gray); font-size: 14px; margin-top: 24px; }

.hex-diagram {
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto;
}
.hex-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hex-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--color-section-pic);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px;
  box-shadow: 0 8px 24px rgba(var(--rgb-green),0.35);
  z-index: 2;
}
.hex-node {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-section-pic);
  color: var(--color-section-pic);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow-subtle);
  z-index: 1;
}
.hex-node.n1 { top: 6px; left: 50%; transform: translateX(-50%); }
.hex-node.n2 { top: 76px; right: 14px; }
.hex-node.n3 { bottom: 76px; right: 14px; }
.hex-node.n4 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.hex-node.n5 { bottom: 76px; left: 14px; }
.hex-node.n6 { top: 76px; left: 14px; }

@media (max-width: 860px) {
  .about-pic-card { grid-template-columns: 1fr; }
  .hex-diagram { width: 280px; height: 280px; }
}

/* ---------- Programs ---------- */
.programs { background: var(--surface-subtle-accent); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-subtle-3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.04);
}
.card-academy:hover { border-color: var(--color-program-academy); }
.card-keiei:hover { border-color: var(--color-program-keiei); }
.card-coco:hover { border-color: var(--color-program-coco); }

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.program-card:hover .card-media img { transform: scale(1.04); }
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  color: #fff;
}
.tag-yellow { background: var(--color-program-academy); color: #5a3a00; }
.tag-blue { background: var(--color-program-keiei); }
.tag-pink { background: var(--color-program-coco); }

.card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.card-title small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-medium-gray);
  margin-top: 4px;
}
.card-lead {
  font-size: 16px;
  color: var(--color-medium-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}
.card-bullets {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
}
.card-bullets li {
  font-size: 15px;
  color: var(--color-slate-ink);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.6;
}
.card-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-action);
}
.card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.meta-pill {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.04);
  color: var(--color-medium-gray);
  font-weight: 500;
}
.card-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-light-gray);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-slate-ink);
}
.price-unit {
  font-size: 14px;
  color: var(--color-medium-gray);
}
.price-label {
  font-size: 14px;
  color: var(--color-medium-gray);
  margin-right: 6px;
  align-self: center;
}
.card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-action);
}

@media (max-width: 960px) {
  .program-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---------- Company ---------- */
.company-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.company-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle-3);
}
.company-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.company-photo-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
}
.company-photo-caption span { font-size: 13px; color: var(--color-medium-gray); }
.company-photo-caption strong { font-size: 18px; }

.company-body .lead {
  font-size: 18px;
  line-height: 2;
  margin: 16px 0 20px;
}
.company-body p {
  color: var(--color-medium-gray);
  line-height: 2;
  margin-bottom: 16px;
  font-size: 17px;
}
.company-info {
  margin-top: 32px;
  border-top: 1px solid var(--color-light-gray);
}
.company-info > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-light-gray);
  font-size: 15px;
}
.company-info dt {
  font-weight: 600;
  color: var(--color-medium-gray);
}
.company-info dd {
  color: var(--color-slate-ink);
}

@media (max-width: 860px) {
  .company-grid { grid-template-columns: 1fr; gap: 32px; }
  .company-photo { max-width: 320px; margin: 0 auto; }
}

/* ---------- Contact ---------- */
.contact { background: var(--surface-subtle-accent); }
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-subtle-3);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(var(--rgb-blue),0.10) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(var(--rgb-magenta),0.08) 0%, transparent 50%);
}
.contact-card .lead {
  font-size: 18px;
  color: var(--color-medium-gray);
  margin: 16px auto 32px;
  max-width: 560px;
}
.contact-card .btn { margin-bottom: 12px; }
.contact-card .muted {
  font-size: 13px;
  color: var(--color-muted-gray);
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-slate-ink);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-brand small {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-meta a { color: #fff; }
.footer-meta small { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 19, 38, 0.6);
  backdrop-filter: blur(6px);
  animation: fadeIn .2s ease;
}
.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: slideUp .3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  font-size: 22px;
  color: var(--color-slate-ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(0,0,0,0.1); }
.modal-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.modal-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-title small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-medium-gray);
  margin-top: 6px;
}
.modal-lead {
  color: var(--color-medium-gray);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-light-gray);
}
.modal-section {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-section-pic);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-light-gray);
}
.modal-list, .modal-check {
  list-style: none;
  padding: 0;
}
.modal-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-slate-ink);
}
.modal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--color-action);
}
.modal-check li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-slate-ink);
}
.modal-check li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--color-section-pic);
  font-weight: 700;
}
.modal-q { font-size: 17px; margin: 12px 0 6px; color: var(--color-slate-ink); }
.modal-q + p { color: var(--color-medium-gray); font-size: 16px; line-height: 1.8; margin-bottom: 12px; }
.modal-grid .muted.small { font-size: 12px; color: var(--color-muted-gray); margin-top: 12px; line-height: 1.7; }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-light-gray);
  flex-wrap: wrap;
}
.modal-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.modal-price .price-num { font-size: 34px; }

@media (max-width: 720px) {
  .modal-dialog { padding: 36px 24px 28px; }
  .modal-grid { grid-template-columns: 1fr; gap: 24px; }
  .modal-title { font-size: 24px; }
  .modal-footer { flex-direction: column; align-items: stretch; }
  .modal-footer .btn { width: 100%; }
}

/* ============================================================
   レスポンシブ — 文字サイズ & スペーシング
   既存のレイアウト用 @media と併用される（カスケード順で上書き）
   Breakpoints:
     ≤ 960px : タブレット
     ≤ 720px : モバイル
     ≤ 480px : 小型モバイル
   ============================================================ */

/* ---------- タブレット ---------- */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .section { padding: clamp(56px, 7vw, 96px) 0; }
  .section-head { margin-bottom: 44px; }

  /* ヘッダーを圧縮（720pxまでの間でメニューが詰まらないよう） */
  .nav { gap: 2px; }
  .nav-link { font-size: 14px; padding: 8px 10px; }
  .nav-cta { font-size: 14px; padding: 8px 14px; margin-left: 4px; }
  .brand-text { font-size: 15px; }
  .brand-logo { width: 32px; height: 32px; }

  /* about(Vision)はこの幅から1カラム化されるので余白を抑える */
  .about-right .quote { padding: 22px 24px; }

  .about-pic-card { padding: clamp(28px, 4vw, 56px); gap: 32px; }
}

/* ---------- モバイル ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; line-height: 1.8; }

  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  /* ヘッダー */
  .nav-container { height: 60px; }
  .brand-logo { width: 32px; height: 32px; }

  /* ヒーロー */
  .hero { min-height: 78vh; }
  .hero-inner { padding: 96px 18px 108px; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 0.3em; margin-bottom: 20px; }
  .hero-title { line-height: 1.4; margin-bottom: 24px; }
  .hero-lead { line-height: 1.95; margin-bottom: 32px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 360px; }
  .btn-hero { min-width: 0; padding: 16px 24px; font-size: 16px; }

  /* セクション見出し */
  .section-eyebrow { font-size: 12px; letter-spacing: 0.28em; }
  .section-sub { font-size: 16px; }

  /* Vision */
  .about-right p { font-size: 16px; line-height: 1.95; margin-bottom: 16px; }
  .about-right .lead { font-size: 17px; }
  .about-right .quote { padding: 20px 22px; font-size: 17px; line-height: 1.85; margin: 24px 0; }
  .about-right .quote strong { font-size: 20px; }

  /* 公益資本主義とは */
  .about-pic-card { padding: 28px 24px; gap: 28px; }
  .about-pic-left p { font-size: 16px; line-height: 1.9; }
  .about-pic-left .muted { font-size: 13px; }
  .hex-diagram { width: 260px; height: 260px; }
  .hex-center { width: 84px; height: 84px; font-size: 17px; }
  .hex-node { width: 62px; height: 62px; font-size: 13px; }

  /* プログラムカード */
  .card-media { aspect-ratio: 16 / 9; }
  .card-tag { top: 12px; left: 12px; font-size: 12px; padding: 5px 11px; }
  .card-body { padding: 22px 22px 24px; }
  .card-title { font-size: 22px; }
  .card-title small { font-size: 13px; }
  .card-lead { font-size: 15px; margin-bottom: 14px; }
  .card-bullets li { font-size: 14px; padding: 5px 0 5px 16px; }
  .card-bullets li::before { top: 12px; }
  .meta-pill { font-size: 12px; }
  .price-num { font-size: 26px; }
  .price-unit, .price-label { font-size: 13px; }
  .card-more { font-size: 14px; }

  /* 会社紹介 */
  .company-grid { gap: 32px; }
  .company-photo-caption strong { font-size: 17px; }
  .company-body .lead { font-size: 17px; }
  .company-body p { font-size: 16px; line-height: 1.95; }
  .company-info > div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 14px 0;
    font-size: 14px;
  }
  .company-info dt { font-size: 12px; letter-spacing: 0.04em; }

  /* お問合せ */
  .contact-card { padding: 36px 24px; }
  .contact-card .lead { font-size: 16px; margin-bottom: 28px; }
  .btn-lg { padding: 14px 22px; font-size: 16px; width: 100%; }

  /* フッター */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-meta { align-items: flex-start; }

  /* モーダル */
  .modal { padding: 16px; }
  .modal-tag { font-size: 12px; }
  .modal-title { font-size: 24px; }
  .modal-title small { font-size: 13px; }
  .modal-lead { font-size: 16px; line-height: 1.85; margin-bottom: 24px; }
  .modal-section { font-size: 13px; }
  .modal-list li { font-size: 15px; padding: 5px 0 5px 16px; }
  .modal-check li { font-size: 16px; padding: 7px 0 7px 24px; }
  .modal-q { font-size: 16px; }
  .modal-q + p { font-size: 15px; }
  .modal-price .price-num { font-size: 30px; }
}

/* ---------- 小型モバイル ---------- */
@media (max-width: 480px) {
  body { font-size: 15.5px; }

  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  .nav-container { height: 56px; }
  .brand-text { font-size: 13px; }
  .brand-logo { width: 28px; height: 28px; }
  .nav-cta { padding: 7px 12px; font-size: 14px; }

  .hero-inner { padding: 84px 16px 96px; }
  .hero-title { letter-spacing: 0.005em; }
  .hero-lead { font-size: 16px; }

  /* Vision quote が見出しっぽくならないよう少しトーンを下げる */
  .about-right .quote { font-size: 16px; padding: 18px 20px; }
  .about-right .quote strong { font-size: 19px; }

  .about-pic-card { padding: 24px 20px; }
  .hex-diagram { width: 240px; height: 240px; }
  .hex-center { width: 76px; height: 76px; font-size: 16px; }
  .hex-node { width: 56px; height: 56px; font-size: 12px; }

  .card-body { padding: 20px 20px 22px; }
  .card-title { font-size: 21px; }
  .card-lead { font-size: 14.5px; }
  .card-bullets li { font-size: 13.5px; }
  .price-num { font-size: 24px; }

  .company-photo { max-width: 260px; }
  .company-photo img { aspect-ratio: 1 / 1.1; }

  .contact-card { padding: 32px 20px; }

  .modal-dialog { padding: 28px 20px 24px; border-radius: 18px; }
  .modal-title { font-size: 22px; }
  .modal-lead { font-size: 15px; }
  .modal-grid { gap: 20px; padding-top: 20px; }
  .modal-list li { font-size: 14.5px; }
  .modal-check li { font-size: 15.5px; }
  .modal-price .price-num { font-size: 26px; }
}
