.bp-hero-slider {
	width: 100%;
	max-width: 100vw;
	overflow:hidden;
	padding: 40px 0;
	box-sizing: border-box;
  }
  
  .bp-hero-slider .swiper-slide {
	width: 70%;
	max-width: 900px;
	background: #fff;
	/* border-radius: 12px; */
	overflow: hidden;
  }
  
  .bp-hero-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
.swiper-pagination-bullet {
	position: relative;
	background: #fff;
	width: 12px;
	height: 12px;
	opacity: 0.5;
	margin: 0 6px !important;
  }
  
  /* アクティブ中の色 */
  .swiper-pagination-bullet-active {
	background: #000;
	opacity: 1;
  }
  
  /* ★プログレスリング（表示時間中に円周を描く） */
  .swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: 
	  conic-gradient(
		#000 0deg,
		#000 calc(var(--progress, 0) * 3.6deg),
		transparent calc(var(--progress, 0) * 3.6deg)
	  );
	mask: radial-gradient(
	  circle at center,
	  transparent 0,
	  transparent 8px,
	  black 8.5px,
	  black 12px,
	  transparent 12.5px
	);
	-webkit-mask: radial-gradient(
	  circle at center,
	  transparent 0,
	  transparent 8px,
	  black 8.5px,
	  black 12px,
	  transparent 12.5px
	);
	pointer-events: none;
  }    
  @media (max-width: 768px) {
	.bp-hero-slider .swiper-slide {
	  width: 88%;
	}
  }


  /* ===== サムネイル全体 ===== */
.bp-thumb-slider {
	max-width: 100%;
	margin: 16px auto 0;
	overflow: hidden;
  }
  .bp-thumb-slider .swiper-wrapper {
	justify-content: center;
  }
  .bp-thumb-slider .swiper-slide {
	width: 120px;
	opacity: 0.4;
	transform: scale(0.9);
	transition: opacity 0.4s ease, transform 0.4s ease;
	cursor: pointer;
  }
  
  .bp-thumb-slider img {
	width: 100%;
	/* border-radius: 6px; */
  }
  
  /* アクティブなサムネイル */
  .bp-thumb-slider .swiper-slide-thumb-active {
	opacity: 1;
	transform: scale(1.05);
  }
  
  /* スマホ */
  @media (max-width: 768px) {
	.bp-thumb-slider .swiper-slide {
	  width: 60px;
	}
  }