:root {
  --mint: #25c2a0;
  --mint-dark: #0f8b74;
  --navy: #13324b;
  --blue-gray: #5a7184;
  --sky: #eaf7f4;
  --cream: #f8fbff;
  --white: #ffffff;
  --text: #203040;
  --subtext: #5d6f7e;
  --line: #dbe6ee;
  --shadow: 0 18px 45px rgba(19, 50, 75, 0.12);
  --shadow-soft: 0 10px 30px rgba(19, 50, 75, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 194, 160, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fffc 0%, #ffffff 22%, #f8fbff 100%);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

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

#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}

main,
.navbar,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 230, 238, 0.9);
  z-index: 50;
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-logo-text {
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-menu ul {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: 12px 0 20px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #edf3f7;
  font-weight: 700;
  color: var(--navy);
}

.mobile-menu.open {
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  box-shadow: 0 14px 30px rgba(37, 194, 160, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(19, 50, 75, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-tertiary,
.btn-outline,
.btn-outline-dark {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(19, 50, 75, 0.2);
}

.btn-outline-dark:hover,
.btn-outline:hover,
.btn-tertiary:hover {
  background: rgba(19, 50, 75, 0.04);
}

.text-link {
  color: var(--mint-dark);
  font-weight: 800;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header-left {
  text-align: left;
  margin: 0 0 28px;
}

.section-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 194, 160, 0.12);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-title {
  margin: 16px 0 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.3;
  color: var(--navy);
}

.section-desc {
  margin: 0;
  color: var(--subtext);
  font-size: 16px;
}

/* Hero */
.hero--renewal {
  padding: 72px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--subtext);
  font-size: 17px;
}

.hero-btns {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btns.center {
  justify-content: center;
}

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

.hero-points li {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5eff5;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card {
  position: absolute;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 0 48px 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(37, 194, 160, 0.22), transparent 38%),
    linear-gradient(160deg, #ffffff, #f0fbf8);
}

.hero-card-sub {
  right: 0;
  bottom: 0;
  width: 64%;
  padding: 22px 24px;
}

.hero-card-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--mint-dark);
  letter-spacing: 0.08em;
}

.hero-card-text {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.6;
}

.hero-mascot-img {
  max-height: 320px;
  object-fit: contain;
}

/* About */
.section-about {
  background: rgba(255, 255, 255, 0.82);
}

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

.pillar-card {
  background: #fff;
  border: 1px solid #e3edf3;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
}

.pillar-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.pillar-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
}

.pillar-card p {
  margin: 0;
  color: var(--subtext);
}

.about-message {
  margin-top: 28px;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(37, 194, 160, 0.08), rgba(19, 50, 75, 0.04));
  border: 1px solid #dcecf1;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.about-message h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.about-message p {
  margin: 0;
  color: var(--subtext);
}

/* Programs */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.program-card-featured {
  border: 2px solid rgba(37, 194, 160, 0.3);
  transform: translateY(-4px);
}

.program-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.program-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.4;
}

.program-copy {
  margin: 0 0 18px;
  color: var(--subtext);
}

.program-list {
  margin-bottom: 24px;
  padding-left: 0;
}

.program-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.program-card .btn {
  margin-top: auto;
}

/* Stats */
.section-stats {
  background: linear-gradient(180deg, rgba(37, 194, 160, 0.05), rgba(255, 255, 255, 0.9));
}

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

.stat-card {
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-value {
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}

.stat-num {
  font-size: clamp(36px, 4vw, 54px);
}

.stat-unit {
  font-size: 22px;
  color: var(--mint-dark);
  font-weight: 900;
  margin-left: 2px;
}

.stat-label {
  margin: 12px 0 0;
  color: var(--subtext);
  font-size: 14px;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.case-card {
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.case-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.case-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
}

.case-card p {
  margin: 0 0 14px;
  color: var(--subtext);
}

.case-card-image {
  background:
    linear-gradient(180deg, rgba(37, 194, 160, 0.05), rgba(19, 50, 75, 0.02)),
    #fff;
}

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

.mint-covers img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e5edf3;
}

/* =========================
   Team
========================= */

/* =========================
   Team
========================= */
.section-team {
  background: rgba(255, 255, 255, 0.86);
}

.team-feature {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.team-feature-photo {
  width: 120px;
}

.team-feature-photo img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}


.team-role-lg {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--mint-dark);
  font-weight: 800;
  font-size: 12px;
}

.team-feature-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
}

.team-feature-body p {
  margin: 0;
  color: var(--subtext);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.team-card {
  background: #fff;
  border: 1px solid #e2edf3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);

  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0;
  align-items: start;
}

.team-photo {
  width: 96px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block;
}



.team-body {
  padding: 18px;
}

.team-role {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: #edf6fb;
  padding: 5px 9px;
  border-radius: 999px;
}

.team-role.special {
  color: #7a4d11;
  background: #fff2d9;
}

.team-role.assist {
  color: #5a4f8b;
  background: #ede7ff;
}

.team-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.team-body p {
  margin: 0;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team-feature {
    grid-template-columns: 1fr;
  }

  .team-feature-photo {
    width: 120px;
    max-width: 120px;
  }

  .team-card {
    grid-template-columns: 96px 1fr;
  }

  .team-photo {
    width: 96px;
    height: 72px;
  }
}








.team-role {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: #edf6fb;
  padding: 6px 10px;
  border-radius: 999px;
}

.team-role.special {
  color: #7a4d11;
  background: #fff2d9;
}

.team-role.assist {
  color: #5a4f8b;
  background: #ede7ff;
}

.team-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.team-body p {
  margin: 0;
  color: var(--subtext);
}

/* Note */
.note-panel {
  background: linear-gradient(135deg, rgba(19, 50, 75, 0.96), rgba(16, 74, 92, 0.96));
  color: #fff;
  border-radius: 30px;
  padding: 54px;
  box-shadow: var(--shadow);
}

.note-panel .section-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #d9fff4;
}

.note-panel .section-title,
.note-panel .section-desc {
  color: #fff;
}

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

.note-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 700;
}

.note-actions {
  margin-top: 24px;
}

/* CTA */
.section-cta {
  padding-top: 0;
}

.cta-box {
  text-align: center;
  background: #fff;
  border: 1px solid #dfeaf1;
  border-radius: 30px;
  padding: 52px 28px;
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
}

.cta-box p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--subtext);
}

/* Contact */
.section-contact {
  padding-top: 24px;
}

.contact-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dce8ef;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

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

.gform-wrap {
  background: #fff;
  border: 1px solid #dbe6ee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid #e5edf3;
  background: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.footer-brand-title {
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 900;
}

.footer-copy {
  margin: 0;
  color: var(--subtext);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.copyright {
  margin: 0;
  color: #7a8b97;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .pillars-grid,
  .program-grid,
  .stats-grid,
  .case-grid,
  .team-grid,
  .team-feature {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-visual {
    min-height: 340px;
  }

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

  .program-grid,
  .pillars-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.is-open,
  .mobile-menu.active,
  .mobile-menu.open {
    display: block;
  }

  .section {
    padding: 72px 0;
  }

  .hero--renewal {
    padding-top: 42px;
  }

  .hero-card-main {
    inset: 0 18px 70px 0;
  }

  .hero-card-sub {
    width: 74%;
  }

  .program-grid,
  .pillars-grid,
  .stats-grid,
  .team-grid,
  .note-list {
    grid-template-columns: 1fr;
  }

  .about-message {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-inner {
    width: min(100% - 24px, var(--max));
    min-height: 70px;
  }

  .nav-logo-text {
    font-size: 13px;
  }

  .nav-logo-img {
    width: 44px;
    height: 44px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-card-main {
    inset: 0 10px 60px 0;
    padding: 14px;
  }

  .hero-card-sub {
    width: 86%;
    padding: 16px;
  }

  .pillar-card,
  .program-card,
  .case-card,
  .stat-card,
  .team-body,
  .cta-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .note-panel {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .mint-covers {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== Team photo size fix: 最後に追加（サイズ縮小版） ===== */
.section-team .team-feature {
  grid-template-columns: 100px 1fr !important; /* 140pxから100pxに縮小 */
  gap: 18px !important;
  align-items: start !important;
}

.section-team .team-feature-photo {
  width: 100px !important; /* 140pxから100pxに縮小 */
}

.section-team .team-feature-photo img {
  width: 100px !important; /* 140pxから100pxに縮小 */
  height: 75px !important;  /* 比率に合わせて調整 */
  max-width: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
}

.section-team .team-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.section-team .team-card {
  display: grid !important;
  grid-template-columns: 80px 1fr !important; /* 110pxから80pxに縮小 */
  gap: 0 !important;
  align-items: start !important;
}

.section-team .team-photo {
  width: 80px !important;  /* 110pxから80pxに縮小 */
  height: 60px !important; /* 比率に合わせて調整 */
  max-width: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.section-team .team-body {
  padding: 16px !important;
}

.section-team .team-feature-body h3 {
  font-size: 24px !important;
}

.section-team .team-body h3 {
  font-size: 20px !important;
}

.section-team .team-body p,
.section-team .team-feature-body p {
  font-size: 14px !important;
  line-height: 1.7 !important;
}

@media (max-width: 768px) {
  .section-team .team-feature {
    grid-template-columns: 1fr !important;
  }

  .section-team .team-feature-photo {
    width: 100px !important; /* 140pxから100pxに縮小 */
  }

  .section-team .team-card {
    grid-template-columns: 80px 1fr !important; /* 110pxから80pxに縮小 */
  }
}

/* ===== 強制サイズ縮小（これでも変わらない場合の最終手段） ===== */
.section-team img,
[class*="team"] img {
  width: 70px !important;
  height: 55px !important;
  max-width: 70px !important;
  min-width: 70px !important;
}

/* さらに小さいカード用の写真がある場合 */
.section-team .team-card img,
.team-photo {
  width: 50px !important;
  height: 40px !important;
  max-width: 50px !important;
  min-width: 50px !important;
}

/* ========================================================
   チーム人物写真のサイズ縮小（ID基準で確実に上書き）
======================================================== */

/* ① 代表（中村未来さん）の大きな写真のサイズ調整 */
#team .team-feature {
  grid-template-columns: 90px 1fr !important; /* 写真の表示エリアを90pxに縮小 */
  gap: 16px !important;
}
#team .team-feature-photo,
#team .team-feature-photo img {
  width: 90px !important;       /* 横幅を140px → 90pxに縮小 */
  height: 68px !important;      /* 縦幅を105px → 68pxに縮小（4:3比率） */
  max-width: 90px !important;
  min-width: 90px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
}

/* ② メンバー4名のカード写真のサイズ調整 */
#team .team-card {
  grid-template-columns: 72px 1fr !important; /* 写真の表示エリアを72pxに縮小 */
  gap: 0 !important;
}
#team .team-photo {
  width: 72px !important;       /* 横幅を110px → 72pxに縮小 */
  height: 54px !important;      /* 縦幅を82px → 54pxに縮小（4:3比率） */
  max-width: 72px !important;
  min-width: 72px !important;
  object-fit: cover !important;
}

/* ③ スマホやタブレットなど、画面が狭くなったときの調整 */
@media (max-width: 768px) {
  #team .team-feature {
    grid-template-columns: 1fr !important; /* スマホでは縦並びに戻す */
  }
  #team .team-feature-photo,
  #team .team-feature-photo img {
    width: 90px !important;
    height: 68px !important;
  }
  #team .team-card {
    grid-template-columns: 72px 1fr !important; /* カードはスマホでも横並びを維持 */
  }
