/* スワイパー全体の白背景＆見切れ */
.swipe-container {
  padding: 40px 20px;
  position: relative;
  overflow: visible;
  
}

/* スライド部分全体 */
.mySwiper {
  overflow: hidden;
  padding: 50px 0;
  background-color: #FFF;
}

/* 各スライド */
.swiper-slide {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 350px;
  width: 296px !important; 
}

.swiper-wrapper {
  gap: 20px;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

/* サムネイル */
.slide-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* コンテンツ */
.slide-content {
  padding: 15px;
}

.slide-title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.slide-meta {
  font-size: 12px;
  color: #888;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 14px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
	@media(max-width: 540px) {
		width: 30px;
		height: 30px;
	}
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-prev {
  left: -15px;
	@media(max-width: 1200px) {
		left: 20px;
	}
}

.swiper-button-next {
  right: -15px;
	@media(max-width: 1200px) {
		right: 20px;
	}
}

.page-block {
	width: 60%;
    margin: 0 auto;
    padding: 100px 0;
}

@media screen and (max-width: 769px) {
	.page-block {
        width: 90%;
        margin: 0 auto;
        padding: 80px 0;
    }
    
    .page-block h2 {
        font-size: 21px;
    }

}

.page-block h2 {
	font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    color: #142b4e;
}

.page-block p {
	font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 50px;
    line-height: 2;
}

.pagination li.disabled {
  color: #aaa;
  pointer-events: none;
  cursor: default;
}

.pagination a.disabled {
  color: #ccc;
  pointer-events: none; /* クリック禁止 */
  cursor: default;
  text-decoration: none;
}