/* フロントページ: お知らせ(news) + ブログ(post) 2カード */
.l-topFeed {
  width: 100%;
  background-color: #f3f4f6;
  padding: 80px 0;
}

.l-topFeed .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.topFeedGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.topFeedCard {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
}

.topFeedCard__head {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.topFeedCard__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin: 0 0 6px;
}

.topFeedCard__title {
  margin: 0;
  padding-top: 0!important;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #3b82f6;
  letter-spacing: 0.04em;
}

.topFeedCard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.topFeedCard__list > li:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.topFeedCard__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px 16px 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.topFeedCard__row:hover {
  background-color: rgba(59, 130, 246, 0.06);
}

.topFeedCard__row--empty {
  cursor: default;
}

.topFeedCard__row--empty:hover {
  background-color: transparent;
}

.topFeedCard__rowBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topFeedCard__date {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.3;
}

.topFeedCard__rowTit {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
}

.topFeedCard__rowTit::before {
  content: '⚫︎\00a0';
}

.topFeedCard__placeholder {
  display: block;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  padding: 16px 4px 16px 0;
}

.topFeedCard__chev {
  flex-shrink: 0;
  align-self: center;
  color: #9ca3af;
  line-height: 1;
  font-size: 0;
}

.topFeedCard__chev::before {
  content: '>';
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  color: #9ca3af;
}

.topFeedCard__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  align-self: center;
  background-color: #3b82f6;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.topFeedCard__more:hover {
  background-color: #1e40af;
  opacity: 0.95;
}

.topFeedCard__moreIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 0;
}

.topFeedCard__moreIcon::after {
  content: '>';
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

@media (max-width: 1024px) {
  .l-topFeed .inner {
    padding: 0 32px;
  }
}

@media only screen and (max-width: 768px) {
  .l-topFeed {
    padding: 50px 0;
  }

  .l-topFeed .inner {
    padding: 0 20px;
  }

  .topFeedGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .topFeedCard {
    padding: 24px 20px 28px;
  }

  .topFeedCard__title {
    font-size: 30px;
  }

  .topFeedCard__row {
    padding: 14px 4px 14px 0;
  }
}
