@charset "utf-8";
/* action */
.section-action{
	text-align: center;
	background-color: #ffffff;
	padding-top: 65px;
	padding-bottom: 200px;
	position: relative;
}

.section-action .title{
	font-size: 10rem;
	line-height: .8;
	margin-bottom: 150px;
	color: var(--color-brighter-green);
}
.section-action .title .poppins{
	font-size: 5.2rem;
	line-height: 1;
}

#carousel {
  margin: 0 auto;
  width: 300px;
  height: 260px;
  
  width: 500px;
  height: 260px;
  
  width:100%;
  height: 260px;

  position: relative;
  perspective: 1800px;
  transform-style: preserve-3d;
 transform: translate3d(0, 0, 0); 	
}


#spinner {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top:0;
  transform-style: preserve-3d;
 	webkit-backface-visibility:visible;
 	backface-visibility: visible;
 	transform: translate3d(0, 0, 0); 	
 	display: block;
}

.action-inner {
  position: absolute;
  width: 320px;
  height: 210px;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 5em;
  text-align: center;
  color: #FFF;
  border-radius: 10px;
  backface-visibility: hidden;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2);
	overflow: hidden !important;
	background: transparent !important;
  transform: translateZ(0);
}


.action-color{
	position: absolute;
	left: 0;
	height: 0;	
	width: 100%;
	height: 100%;
  border-radius: 10px;
  opacity: 1;
  cursor: pointer;
}


.action-inner a{
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
	z-index: 2;
  border-radius: 10px;
	transform: translateZ(0);
  cursor: pointer;
}
.action-inner a:after{
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	z-index: 1;
	bottom: 10px;
	right: 10px;
	background: url('../image/icon_arrow_right.webp') center/cover no-repeat;
}

.action-inner h3 {
	position: absolute;
	top: 20px;
	left:20px;
  margin-bottom: 1rem;
  color: #fff;
  z-index: 1;
  font-size: 3rem;
  line-height: 1;
	transform: translateZ(1px);
	text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.action-inner h3 > span{
	line-height: .8;
}
.action-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  pointer-events: auto;
	display: block;
  transition: opacity 0.5s ease;
}
/*
.action-inner.visible-img .action-color{
  transition: opacity 0.5s ease;
  opacity: 0;

}

.action-inner.visible-img img {
  opacity: 1;
  pointer-events: auto;
}
*/

@media screen and (max-width: 767px) {
	/*　official　action */
	.section-action{
		padding-top: 16.9271vw;
		padding-bottom: calc(100px - 200vw) ;
	}
	.section-action .title{
		font-size: 13.0208vw;
		margin-bottom: 19.5313vw;
	}
	.section-action .title .poppins{
		font-size: 8.8542vw;
	}
}


