/* Swiperラッパー全体 */
.recent-slider {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* スライド1枚（画像＋テキスト） */
.swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  background-color: #111;
  border: 1px solid #333;
  color: #fff;
  box-sizing: border-box;
}

/* 左側：画像 */
.slide-thumbnail {
  flex: 1;
  max-width: 50%;
}
.slide-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 右側：テキスト部分 */
.slide-content {
  flex: 1;
  max-width: 50%;
}
.slide-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.slide-content .meta {
  font-size: 14px;
  color: #ccc;
}

/* ナビゲーション矢印 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

/* ページネーション（下の点） */
.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-wrapper {
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%; /* スライド1枚表示なら */
  box-sizing: border-box;
}

.top-swiper {
  width: 100%;
  padding: 20px 0;
}
.top-swiper .swiper-slide {
  background: #111;
  padding: 10px;
  color: #fff;
  text-align: center;
  border: 1px solid #333;
}
.top-swiper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.top-swiper { position: relative; }
.top-swiper .swiper-button-prev,
.top-swiper .swiper-button-next {
  position: absolute;
  z-index: 20;   /* 表に出す */
  pointer-events: auto;
}
.top-swiper .swiper-slide { user-select: none; }


.recent-section {
  position: relative;
  margin-bottom: 50px;
}

.recent-heading {
  position: relative;
  top: 10px;
  right: 20px;
  z-index: 10;
  font-size: 3.0rem; /* 通常は 1rem = 16px */
  color: white;
  font-weight: bold;
}