@charset "UTF-8";
/* CSS Document */
.swiper{
	overflow: hidden;
}
.swiper-pagination{
	bottom: -50px!important;
	text-align: right;
	padding-right: 20px;
}
/* ラッパー */
.topics-carousel { width: 100%; }

@media screen and (max-width:765px) {
	.topics-carousel { width: 95%; }
}

/* カード */
.topics-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #eee;
}
.topics-card .thumb {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* タイトルバッジ */
.title-badge {
	position: relative;
	display: block;
	top:-20px;
	max-width: 90%;	
	padding: 10px 16px;
	margin:0 auto;
	background: #f7941d;
	color: #fff;
	font-weight: 900;
	font-size: 1.6rem;
	letter-spacing:1px;
	line-height: 1.4;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:1023px) {
	.title-badge{
		font-size: 1.6rem;
		letter-spacing:1px;
	}
}

/* 矢印とドット強調（前面へ） */
.topics-carousel .swiper-button-prev,
.topics-carousel .swiper-button-next {
	display: none;
  z-index: 3;
  color: rgb(255 255 255 / 80%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.topics-carousel .swiper-pagination-bullet { background: #D9D9D9; opacity: .35; }
.topics-carousel .swiper-pagination-bullet-active { background: #f8941c;opacity: 1; }


/* 一覧へ */
.archiveLink{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
    z-index: 3;
}
.archiveLink a{
	color: #333333;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 8px;
	line-height: 1;
	display: block
}
.archiveLink a:hover{
	color: #f8941c;
}
.archiveLink a::after{
	font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 900;
    content: "\f054";
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.archiveLink a:hover::after{
	color: #f8941c;
}