.l-float2 {
	position: fixed;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  right: 16px;
  bottom: calc(49px + 16px);
}
.l-float2.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.l-float2.is-closed { display: none; }

.l-float2__close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: #222;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.l-float2__close-ico { position: relative; display: block; width: 12px; height: 12px; }
.l-float2__close-ico::before,
.l-float2__close-ico::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 12px; height: 1.5px;
	background-color: currentColor;
}
.l-float2__close-ico::before { transform: translate(-50%, -50%) rotate(45deg); }
.l-float2__close-ico::after { transform: translate(-50%, -50%) rotate(-45deg); }


.l-float2 .splide__track{
  margin: 0;
}
/* ==== Splideスライダー部分 ==== */
.l-float2__slider {
	width: 200px;
}

.l-float2__slider .splide__slide img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.l-float2 {
		right: 20px;
		bottom: 10px;
		z-index: 50;
	}
	
}

.home-newtopic{
  padding-top: 70px;
  padding-bottom: 70px;
}


 .newtopic-wrap{

  }
  
  
@media (max-width: 767px) {
  .home-newtopic{
  padding-top: 30px;
  padding-bottom: 30px;
}

 .newtopic-wrap{
    width: 100vw;
    margin-inline:calc( 50% - 50vw);
  }

 
}


	.newtopic { 
  	position: relative;
  }

.newtopic .splide__track{
  margin: 0;
}
  
.newtopic .card {
		transform: scale(0.8);
		opacity: 0.35;
}
.newtopic .splide__slide.is-active .card {
	transform: scale(1);
	opacity: 1;
	z-index: 1;
}

.newtopic.is-ready .card {
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.newtopic .splide__slide img{
  width: 100%;
  height: auto;
}

	.newtopic .splide__controls{
  	width: 90%;
  	max-width: 800px;
  	margin-top: 50px;
  	margin-inline:auto;
  	
	}
	.newtopic .splide__arrows {
		position: absolute;
		bottom: 0; left: 0; right: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.newtopic .splide__arrow {
		position: static;
		display: flex;
		align-items: center;
		justify-content: center;
		transform: none;
		opacity: 1;
	}
	/*.newtopic .splide__arrow svg { fill: #b48a5a; width: 18px; height: 18px; }*/
	.newtopic .splide__pagination {
		display: flex !important;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 48px;
		align-items: center;
		gap: 8px;
		width: auto;
		margin: 0;
		padding: 0;
		    justify-content: center;
	}
	.newtopic .splide__pagination__page { width: 8px; height: 8px; background: #ddd; opacity: 1; margin: 0; }
	.newtopic .splide__pagination__page.is-active { background: #b48a5a; transform: none; }
