.bp-hero-slider {
	width: 100%;
	padding: 40px 0; /* 上下に余白を付けて立体感を出す */
	box-sizing: border-box;
  }
  
  .bp-hero-slider .swiper-slide {
	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;
  }    
  