:root {
  --top-blue: #0A2463;
  --top-blue-2: #093A95;
  --top-light-blue: #EEF6FF;
  --top-pale: #F6FAFE;
  --top-orange: #E58100;
  --top-text: #333333;
  --top-muted: #667085;
  --top-border: #DDE8F5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--top-text);
  line-height: 1.9;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--top-blue-2);
}

.top-container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.top-container--narrow {
  width: min(920px, 92%);
}

.top-container--medium {
  width: min(980px, 92%);
}

.top-section {
  padding: 76px 0;
}

.top-section--pale {
  background: var(--top-pale);
}

.top-section-title {
  margin: 0 0 16px;
  color: var(--top-blue);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: .02em;
}

.top-section-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
  color: #445064;
}

.top-section-lead-left {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: left;
  font-size: clamp(16px, 1.6vw, 18px);
  color: #445064;
}

/* Hero */
.top-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,160,217,.14), transparent 18%),
    radial-gradient(circle at 88% 28%, rgba(0,160,217,.12), transparent 20%),
    linear-gradient(100deg, #F4FAFF 0%, #EAF5FF 52%, #DCEEFF 100%);
}

.top-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,36,99,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,36,99,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.top-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(10,36,99,.055);
  pointer-events: none;
}

.top-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  min-height: 560px;
  margin-inline: auto;
  display: grid;
  align-items: center;
  padding: 80px 0;
}

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

.top-hero__copy {
  max-width: 980px;
  margin-inline: auto;
}

.top-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--top-blue-2);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(10,36,99,.08);
}

.top-hero h1 {
  max-width: 1040px;
  margin: 0 auto 26px;
  color: var(--top-blue);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: .02em;
  text-wrap: balance;
}

.top-hero__lead {
  max-width: 880px;
  margin: 0 auto;
  color: #27364C;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 2;
}

.top-hero__service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 32px auto 0;
}

.top-hero__service-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border: 1px solid rgba(10,36,99,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--top-blue);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(10,36,99,.04);
}

.top-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

/* Problems */
.top-problem-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.top-problem-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border: 1px solid var(--top-border);
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(10,36,99,.04);
}

.top-problem-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--top-light-blue);
  color: var(--top-blue-2);
  font-weight: 900;
  font-size: 14px;
}

.top-message {
  margin: 28px 0 0;
  color: var(--top-orange);
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

/* Services */
.top-service-list {
  display: grid;
  gap: 24px;
}

.top-service-item {
  overflow: hidden;
  border: 1px solid rgba(10,36,99,.28);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10,36,99,.045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.top-service-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10,36,99,.42);
  box-shadow: 0 16px 34px rgba(10,36,99,.08);
}

.top-service-item__link {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 0;
  align-items: center;
  min-height: 132px;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.top-service-item__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px 40px;
  border-right: 1px solid var(--top-border);
}

.top-service-item__label {
  margin: 0 0 4px;
  color: #B68A55;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .32em;
  line-height: 1.4;
}

.top-service-item h3 {
  margin: 0;
  color: var(--top-blue);
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .02em;
}

.top-service-item__body {
  padding: 24px 40px;
}

.top-service-item__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-service-item__body li {
  position: relative;
  padding-left: 1.1em;
  color: #2F3B4C;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.top-service-item__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B68A55;
}

/* Reasons */
.top-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.top-reason-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--top-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10,36,99,.055);
}

.top-reason-card__num {
  display: inline-flex;
  margin-bottom: 16px;
  color: #B8C9DD;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.top-reason-card h3 {
  margin: 0 0 12px;
  color: var(--top-blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.top-reason-card p {
  margin: 0;
  color: #445064;
  font-size: 15px;
}

/* CTA */
.top-cta {
  background: linear-gradient(180deg, #EAF5FF 0%, #F9FCFF 100%);
}

.top-cta-box {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #CFE2F5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10,36,99,.08);
  text-align: center;
}

.top-cta-box__label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--top-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.top-cta-box__text {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #27364C;
}

.top-cta-phone-wrap {
  margin: 0 auto 30px;
}

.top-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(100%, 460px);
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--top-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(229,129,0,.22);
}

.top-cta-phone strong {
  font-size: 22px;
  line-height: 1;
}

.top-cta-phone-wrap p {
  margin: 8px 0 0;
  color: var(--top-muted);
  font-size: 14px;
}

.top-form-wrap {
  width: min(720px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 14px;
  background: #f7f7f7;
}

/* About */
.top-about-box {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--top-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10,36,99,.055);
}

.top-about-box h2 {
  margin: 0 0 10px;
  color: var(--top-blue);
  font-size: 26px;
  font-weight: 900;
}

.top-about-box h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
}

.top-about-box p {
  margin: 0 0 16px;
}

.top-about-box p:last-child {
  margin-bottom: 0;
}

.top-about-box__logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 18px;
  background: var(--top-pale);
}

.top-about-box__logo img {
  width: min(220px, 80%);
}

/* ================= About Links (情報公開・ポリシー対応) ================= */
.top-about-links {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px dashed var(--top-border); /* 上部に控えめな区切り線 */
  display: flex;
  flex-wrap: wrap;    /* 画面幅に合わせて自動で折り返し */
  gap: 12px 24px;     /* 上下12px、左右24pxの隙間 */
}

.top-about-links li a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--top-blue);
  text-decoration: underline;
  text-decoration-color: rgba(10, 36, 99, 0.2); /* 下線を少し薄くして上品に */
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  font-weight: bold;
}

.top-about-links li a:hover {
  color: #B68A55; /* 既存のゴールド系アクセントカラーでホバー */
  text-decoration-color: #B68A55;
}

/* スマホ表示時の微調整 */
@media (max-width: 680px) {
  .top-about-links {
    margin: 20px 0 0;
    padding: 20px 0 0;
    gap: 12px 16px;
  }
  .top-about-links li a {
    font-size: 13px; /* スマホでは少し小さくして押しやすく */
  }
}

@media (max-width: 980px) {
  .top-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .top-hero__visual {
    max-width: 680px;
  }

  .top-service-item__link {
    grid-template-columns: 280px 1fr;
  }

  .top-service-item__head,
  .top-service-item__body {
    padding-inline: 28px;
  }

  .top-reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-about-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .top-section {
    padding: 56px 0;
  }

  .top-hero__inner {
    padding: 42px 0;
    gap: 28px;
  }

  .top-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .top-hero__buttons {
    display: grid;
  }

  .top-btn {
    width: 100%;
  }

  .top-hero__visual img {
    min-height: 240px;
    border-radius: 18px;
  }
  .top-service-item__link {
    grid-template-columns: 1fr;
  }

  .top-service-item__head {
    padding: 24px 28px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--top-border);
  }

  .top-service-item__body {
    padding: 18px 28px 24px;
  }

  .top-service-item__body ul {
    grid-template-columns: 1fr;
  }

  .top-reason-grid {
    grid-template-columns: 1fr;
  }

  .top-cta-phone {
    flex-direction: column;
    gap: 6px;
    border-radius: 18px;
  }

  .top-cta-box__text {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .top-hero__inner {
    min-height: auto;
    padding: 58px 0;
  }

  .top-hero h1 {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.35;
    letter-spacing: .01em;
  }

  .top-hero__lead {
    text-align: left;
    line-height: 1.9;
  }

  .top-hero__service-tags {
    justify-content: flex-start;
  }

  .top-hero__buttons {
    display: grid;
  }

  .top-btn {
    width: 100%;
  }
}

/* ================= Services list refinements ================= */
.top-service-item__link {
  grid-template-columns: minmax(340px, 380px) minmax(0, 1fr) 150px;
  align-items: stretch;
}

.top-service-item__head {
  padding: 28px 44px;
}

.top-service-item__label {
  margin: 0 0 6px;
  color: #B68A55;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.2;
}

.top-service-item h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.42;
}

.top-service-item__body {
  display: flex;
  align-items: center;
  padding: 24px 28px 24px 38px;
}

.top-service-item__body ul {
  width: 100%;
  column-gap: 24px;
  row-gap: 8px;
}

.top-service-item__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px 28px 34px 0;
  padding: 10px 14px;
  border: 1px solid rgba(10,36,99,.22);
  border-radius: 999px;
  color: var(--top-blue);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.top-service-item__more::after {
  content: " →";
  margin-left: 4px;
}

.top-service-item:hover .top-service-item__more {
  background: var(--top-blue);
  border-color: var(--top-blue);
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .top-service-item__link {
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr) 132px;
  }

  .top-service-item__head {
    padding-inline: 30px;
  }

  .top-service-item__body {
    padding-inline: 28px;
  }

  .top-service-item__body ul {
    grid-template-columns: 1fr;
  }

  .top-service-item__more {
    margin-right: 22px;
  }
}

@media (max-width: 760px) {
  .top-service-item__link {
    grid-template-columns: 1fr;
  }

  .top-service-item__head {
    padding: 24px 28px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--top-border);
  }

  .top-service-item__body {
    padding: 18px 28px 8px;
  }

  .top-service-item__body ul {
    grid-template-columns: 1fr;
  }

  .top-service-item__more {
    align-self: flex-start;
    margin: 0 28px 24px;
  }
}

/* Hero title orphan prevention */
@media (max-width: 680px) {
  .top-hero h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.36;
    letter-spacing: .01em;
  }
}


/* ================= Hero buttons final override ================= */
.top-hero__buttons a.top-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.top-hero__buttons a.top-btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.top-hero__buttons a.top-btn--orange {
  background: var(--top-orange) !important;
  color: #fff !important;
  border: 1px solid var(--top-orange) !important;
  box-shadow: 0 12px 24px rgba(229,129,0,.24);
}

.top-hero__buttons a.top-btn--orange:hover {
  background: #d67800 !important;
  border-color: #d67800 !important;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(229,129,0,.30);
}

.top-hero__buttons a.top-btn--outline {
  background: var(--top-blue) !important;
  color: #fff !important;
  border: 1px solid var(--top-blue) !important;
  box-shadow: 0 12px 24px rgba(10,36,99,.22);
}

.top-hero__buttons a.top-btn--outline:hover {
  background: #071d52 !important;
  border-color: #071d52 !important;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(10,36,99,.28);
}

@media (max-width: 680px) {
  .top-hero__buttons a.top-btn {
    width: 100%;
  }
}

/* ================= Service list buttons final override ================= */
.top-service-item__more {
  background: var(--top-blue) !important;
  color: #fff !important;
  border: 1px solid var(--top-blue) !important;
  box-shadow: 0 12px 24px rgba(10,36,99,.22);
}

.top-service-item:hover .top-service-item__more {
  background: #071d52 !important;
  border-color: #071d52 !important;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(10,36,99,.28);
  transform: translateY(-2px);
}


/* ================= Service list button size fix ================= */
.top-service-item__more {
  width: 124px !important;
  min-width: 124px !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 16px !important;
  margin: 0 28px 0 0 !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.top-service-item:hover .top-service-item__more {
  transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
  .top-service-item__more {
    width: 124px !important;
    min-width: 124px !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 28px 24px !important;
    align-self: flex-start !important;
  }
}


/* ================= CTA section final adjustment ================= */
.top-cta .top-section-title {
  margin-bottom: 14px;
}

.top-cta .top-section-lead {
  margin-bottom: 34px;
}

.top-cta-box {
  text-align: center;
}

.top-cta-box__label {
  display: none !important;
}

.top-cta-box__text {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #27364C;
}

.top-cta-phone-wrap {
  margin: 0 auto 30px;
  text-align: center;
}

.top-cta-phone {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 420px);
  min-height: 56px;
  padding: 12px 22px;
  border: 1px solid rgba(10,36,99,.22);
  border-radius: 999px;
  background: #fff !important;
  color: var(--top-blue) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(10,36,99,.16);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.top-cta-phone__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(10,36,99,.22);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.top-cta-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--top-orange);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.top-cta-phone__number {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  transform: translateY(1px);
}

.top-cta-phone__time {
  margin: 8px 0 0;
  color: var(--top-muted);
  font-size: 13px;
  line-height: 1.5;
}

.top-cta-phone:hover,
.top-cta-phone:focus-visible {
  background: var(--top-blue) !important;
  border-color: var(--top-blue) !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(10,36,99,.26);
  transform: translateY(-1px);
}

.top-cta-phone:hover .top-cta-phone__label,
.top-cta-phone:focus-visible .top-cta-phone__label {
  border-right-color: rgba(255,255,255,.32);
}

.top-cta-phone:hover .top-cta-phone__icon,
.top-cta-phone:focus-visible .top-cta-phone__icon {
  background: #fff;
  color: var(--top-blue);
}

@media (max-width: 520px) {
  .top-cta-phone {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 14px;
  }

  .top-cta-phone__label {
    padding-right: 12px;
    margin-right: 12px;
    font-size: 12px;
  }

  .top-cta-phone__number {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .top-cta-phone {
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .top-cta-phone__label {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
}


/* ================= CTA phone vertical alignment fix ================= */
.top-cta-phone {
  height: 56px !important;
  min-height: 56px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
}

.top-cta-phone__label,
.top-cta-phone__number {
  height: 56px !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.top-cta-phone__number {
  transform: translateY(-1px) !important;
}

@media (max-width: 520px) {
  .top-cta-phone {
    height: 52px !important;
    min-height: 52px !important;
  }

  .top-cta-phone__label,
  .top-cta-phone__number {
    height: 52px !important;
  }
}

@media (max-width: 380px) {
  .top-cta-phone {
    height: auto !important;
    min-height: 58px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .top-cta-phone__label,
  .top-cta-phone__number {
    height: auto !important;
  }
}
/* ================= Mission ================= */
/* 理念・活動のリード文（長文のため左揃えにして可読性を確保） */
.top-mission-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.6vw, 16px);
  color: #445064;
  line-height: 2;
  text-align: left; 
}

/* 主な活動内容の囲み枠 */
.top-mission-activities {
  background: #fff;
  padding: 36px 48px;
  margin: 0 0 32px;
  border-radius: 16px;
  border: 1px solid var(--top-border);
  box-shadow: 0 10px 24px rgba(10,36,99,.045);
}

.top-mission-activities h3 {
  color: var(--top-blue);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  margin: 0 0 24px;
  text-align: center;
  letter-spacing: .02em;
}

.top-mission-list {
  list-style: none;
  margin: 0 auto; /* 変更：左右の余白を均等にして中央寄せ */
  padding: 0;
  display: grid;
  gap: 16px;
  width: fit-content; /* 追加：幅をコンテンツ（文字）の長さに合わせる */
}

.top-mission-list li {
  position: relative;
  padding-left: 1.6em;
  color: #2F3B4C;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

/* 既存デザインのアクセントカラー（#B68A55）をリストマークに流用 */
.top-mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B68A55;
}

/* スマホ表示時の余白・フォントサイズ調整 */
@media (max-width: 680px) {
  .top-mission-activities {
    padding: 28px 24px;
  }
  .top-mission-list li {
    font-size: 15px;
  }
}