.top #content {
  margin: 0;
}

.p-mainVisual__slideTitle {
  font-size: clamp(1.8rem, 4vw, 3.75rem);
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem;
}
.p-mainVisual__slideText {
  margin-bottom: .75rem;
}

/* ===== 共通レイアウト ===== */
.section {
  padding: 5rem 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--clr-gray-800);
}
.section__lead {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  color: var(--gray-600);
  text-align: center;
}

/* ===== 事業カード ===== */
#services {
  background-color: white;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-10px);
}
.card__thumb {
  height: 190px;
  overflow: hidden;
  background: #e5e7eb;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.card__body {
  padding: 1.5rem;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(44, 82, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--color-primary-500);
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-gray-800);
  margin: 0 0 0.75rem;
}
.card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  color: var(--color-primary-500);
  font-weight: 500;
  font-size: 0.95rem;
}
.link-arrow:hover {
  text-decoration: underline;
}

/* ===== お知らせ ===== */
.post-list {
  margin-top: 2rem;
}
.news-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.news-card__thumb {
  height: 190px;
  background: #e5e7eb;
  overflow: hidden;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.news-card__body {
  padding: 1.5rem;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  color: var(--gray-500);
}
.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge--blue {
  background: #dbeafe;
  color: #1e3a8a;
}
.badge--green {
  background: #d1fae5;
  color: #065f46;
}
.badge--purple {
  background: #ede9fe;
  color: #5b21b6;
}

/* ===== お問い合わせ ===== */
#contact {
  background-color: white;
}
.contact_button {
  text-align: center;
  margin-top: 3rem;
}
.contact-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(44, 82, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--color-primary-500);
}
