@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	Marquee
----------------------------------------------------------*/
.marquee__area {
	position: absolute;
	left:  0px;
    top: 400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: -1;
}


/* Marquee styles */
.marquee {
	--gap: 0.5rem;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.marquee__content {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
}

.marquee img {
	/*max-width: 100%;*/
	height: 5rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Enable animation */
.enable-animation .marquee__content {
	animation: scroll 90s linear infinite;
}


@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}

/* Other page demo styles */
.marquee__content > * {
	list-style: none;
	flex: 0 0 auto;
	color: #e5acce;
	margin: 0px;
	padding: 0rem 0rem;
	text-align: center;
}

/*---------------- TB ----------------*/
@media screen and (min-width : 600px) {
	.marquee__area {
		width: 80%;
		left: 10%;
		top: 660px;
	}
}


/* -------------- PC -------------- */
@media screen and (min-width: 768px) {	
	.marquee__area {
		width: 80%;
		left: 10%;
		top: 470px;
	}
}

