


.marquee2 {
	position: absolute;
	top: 80px;
	margin-left:0px;

	width: 1040px;		/* Xmasは1000px　正月は1040px */
	height: 120px;
	padding: 0px 0 0;
	overflow: hidden;
	/*border: 1px #ccc solid;
	border-radius: 20px;
	background-color: #000;*/
	z-index: 10;
}   

.marquee2-text {
	display: inline-block;
	padding-left: 100%;
	white-space: nowrap;
	animation: marquee2 10s linear infinite;		/* 30sはスピード（少なくすると速くなる） */
	color:white;
}

@keyframes marquee2 {
	  0% { transform: translate(0); }
	100% { transform: translate(-100%); }
}




























